mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 09:57:00 +02:00
This change takes all existing WebIDL files in the repo that had definition lines without four leading spaces, and fixes them so they have four leading spaces. (cherry picked from commit 51528ec6779202747cc3b99d3b77772a124a0b47)
18 lines
593 B
Plaintext
18 lines
593 B
Plaintext
#import <DOM/Event.idl>
|
|
|
|
// https://www.w3.org/TR/css-animations-1/#animationevent
|
|
[Exposed=Window]
|
|
interface AnimationEvent : Event {
|
|
constructor(CSSOMString type, optional AnimationEventInit animationEventInitDict = {});
|
|
readonly attribute CSSOMString animationName;
|
|
readonly attribute double elapsedTime;
|
|
readonly attribute CSSOMString pseudoElement;
|
|
};
|
|
|
|
// https://www.w3.org/TR/css-animations-1/#dictdef-animationeventinit
|
|
dictionary AnimationEventInit : EventInit {
|
|
CSSOMString animationName = "";
|
|
double elapsedTime = 0.0;
|
|
CSSOMString pseudoElement = "";
|
|
};
|