mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 08:27:46 +00:00
LibWeb: Format all .idl files to use four space indentation
This commit is contained in:
parent
d720fb8845
commit
5f5ac48908
21 changed files with 163 additions and 167 deletions
|
@ -7,32 +7,31 @@
|
|||
interface Animation : EventTarget {
|
||||
constructor(optional AnimationEffect? effect = null,
|
||||
optional AnimationTimeline? timeline);
|
||||
attribute DOMString id;
|
||||
attribute AnimationEffect? effect;
|
||||
attribute AnimationTimeline? timeline;
|
||||
attribute double? startTime;
|
||||
attribute double? currentTime;
|
||||
attribute double playbackRate;
|
||||
readonly attribute AnimationPlayState playState;
|
||||
readonly attribute AnimationReplaceState replaceState;
|
||||
readonly attribute boolean pending;
|
||||
readonly attribute Promise<Animation> ready;
|
||||
readonly attribute Promise<Animation> finished;
|
||||
|
||||
// FIXME:
|
||||
// attribute EventHandler onfinish;
|
||||
// attribute EventHandler oncancel;
|
||||
// attribute EventHandler onremove;
|
||||
attribute DOMString id;
|
||||
attribute AnimationEffect? effect;
|
||||
attribute AnimationTimeline? timeline;
|
||||
attribute double? startTime;
|
||||
attribute double? currentTime;
|
||||
attribute double playbackRate;
|
||||
readonly attribute AnimationPlayState playState;
|
||||
readonly attribute AnimationReplaceState replaceState;
|
||||
readonly attribute boolean pending;
|
||||
readonly attribute Promise<Animation> ready;
|
||||
readonly attribute Promise<Animation> finished;
|
||||
|
||||
// undefined cancel();
|
||||
// undefined finish();
|
||||
// undefined play();
|
||||
// undefined pause();
|
||||
// undefined updatePlaybackRate(double playbackRate);
|
||||
// undefined reverse();
|
||||
// undefined persist();
|
||||
// [CEReactions]
|
||||
// undefined commitStyles();
|
||||
// FIXME: attribute EventHandler onfinish;
|
||||
// FIXME: attribute EventHandler oncancel;
|
||||
// FIXME: attribute EventHandler onremove;
|
||||
|
||||
// FIXME: undefined cancel();
|
||||
// FIXME: undefined finish();
|
||||
// FIXME: undefined play();
|
||||
// FIXME: undefined pause();
|
||||
// FIXME: undefined updatePlaybackRate(double playbackRate);
|
||||
// FIXME: undefined reverse();
|
||||
// FIXME: undefined persist();
|
||||
// FIXME: [CEReactions] undefined commitStyles();
|
||||
};
|
||||
|
||||
// https://www.w3.org/TR/web-animations-1/#the-animationplaystate-enumeration
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue