mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 16:27:43 +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,6 +7,7 @@
|
||||||
interface Animation : EventTarget {
|
interface Animation : EventTarget {
|
||||||
constructor(optional AnimationEffect? effect = null,
|
constructor(optional AnimationEffect? effect = null,
|
||||||
optional AnimationTimeline? timeline);
|
optional AnimationTimeline? timeline);
|
||||||
|
|
||||||
attribute DOMString id;
|
attribute DOMString id;
|
||||||
attribute AnimationEffect? effect;
|
attribute AnimationEffect? effect;
|
||||||
attribute AnimationTimeline? timeline;
|
attribute AnimationTimeline? timeline;
|
||||||
|
@ -19,20 +20,18 @@ interface Animation : EventTarget {
|
||||||
readonly attribute Promise<Animation> ready;
|
readonly attribute Promise<Animation> ready;
|
||||||
readonly attribute Promise<Animation> finished;
|
readonly attribute Promise<Animation> finished;
|
||||||
|
|
||||||
// FIXME:
|
// FIXME: attribute EventHandler onfinish;
|
||||||
// attribute EventHandler onfinish;
|
// FIXME: attribute EventHandler oncancel;
|
||||||
// attribute EventHandler oncancel;
|
// FIXME: attribute EventHandler onremove;
|
||||||
// attribute EventHandler onremove;
|
|
||||||
|
|
||||||
// undefined cancel();
|
// FIXME: undefined cancel();
|
||||||
// undefined finish();
|
// FIXME: undefined finish();
|
||||||
// undefined play();
|
// FIXME: undefined play();
|
||||||
// undefined pause();
|
// FIXME: undefined pause();
|
||||||
// undefined updatePlaybackRate(double playbackRate);
|
// FIXME: undefined updatePlaybackRate(double playbackRate);
|
||||||
// undefined reverse();
|
// FIXME: undefined reverse();
|
||||||
// undefined persist();
|
// FIXME: undefined persist();
|
||||||
// [CEReactions]
|
// FIXME: [CEReactions] undefined commitStyles();
|
||||||
// undefined commitStyles();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// https://www.w3.org/TR/web-animations-1/#the-animationplaystate-enumeration
|
// https://www.w3.org/TR/web-animations-1/#the-animationplaystate-enumeration
|
||||||
|
|
|
@ -30,9 +30,7 @@ dictionary BaseKeyframe {
|
||||||
// https://www.w3.org/TR/web-animations-1/#the-keyframeeffect-interface
|
// https://www.w3.org/TR/web-animations-1/#the-keyframeeffect-interface
|
||||||
[Exposed=Window]
|
[Exposed=Window]
|
||||||
interface KeyframeEffect : AnimationEffect {
|
interface KeyframeEffect : AnimationEffect {
|
||||||
constructor(Element? target,
|
constructor(Element? target, object? keyframes, optional (unrestricted double or KeyframeEffectOptions) options = {});
|
||||||
object? keyframes,
|
|
||||||
optional (unrestricted double or KeyframeEffectOptions) options = {});
|
|
||||||
constructor(KeyframeEffect source);
|
constructor(KeyframeEffect source);
|
||||||
|
|
||||||
attribute Element? target;
|
attribute Element? target;
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
// https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextPathElement
|
// https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextPathElement
|
||||||
[Exposed=Window]
|
[Exposed=Window]
|
||||||
interface SVGTextPathElement : SVGTextContentElement {
|
interface SVGTextPathElement : SVGTextContentElement {
|
||||||
|
|
||||||
// textPath Method Types
|
// textPath Method Types
|
||||||
const unsigned short TEXTPATH_METHODTYPE_UNKNOWN = 0;
|
const unsigned short TEXTPATH_METHODTYPE_UNKNOWN = 0;
|
||||||
const unsigned short TEXTPATH_METHODTYPE_ALIGN = 1;
|
const unsigned short TEXTPATH_METHODTYPE_ALIGN = 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue