mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 07:07:44 +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
|
@ -1,6 +1,6 @@
|
|||
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedNumber
|
||||
[Exposed=Window]
|
||||
interface SVGAnimatedNumber {
|
||||
attribute float baseVal;
|
||||
readonly attribute float animVal;
|
||||
attribute float baseVal;
|
||||
readonly attribute float animVal;
|
||||
};
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedString
|
||||
[Exposed=Window]
|
||||
interface SVGAnimatedString {
|
||||
attribute DOMString baseVal;
|
||||
attribute DOMString baseVal;
|
||||
[ImplementedAs=base_val] readonly attribute DOMString animVal;
|
||||
};
|
||||
|
|
|
@ -4,20 +4,19 @@
|
|||
// https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextPathElement
|
||||
[Exposed=Window]
|
||||
interface SVGTextPathElement : SVGTextContentElement {
|
||||
// textPath Method Types
|
||||
const unsigned short TEXTPATH_METHODTYPE_UNKNOWN = 0;
|
||||
const unsigned short TEXTPATH_METHODTYPE_ALIGN = 1;
|
||||
const unsigned short TEXTPATH_METHODTYPE_STRETCH = 2;
|
||||
|
||||
// textPath Method Types
|
||||
const unsigned short TEXTPATH_METHODTYPE_UNKNOWN = 0;
|
||||
const unsigned short TEXTPATH_METHODTYPE_ALIGN = 1;
|
||||
const unsigned short TEXTPATH_METHODTYPE_STRETCH = 2;
|
||||
// textPath Spacing Types
|
||||
const unsigned short TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
|
||||
const unsigned short TEXTPATH_SPACINGTYPE_AUTO = 1;
|
||||
const unsigned short TEXTPATH_SPACINGTYPE_EXACT = 2;
|
||||
|
||||
// textPath Spacing Types
|
||||
const unsigned short TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
|
||||
const unsigned short TEXTPATH_SPACINGTYPE_AUTO = 1;
|
||||
const unsigned short TEXTPATH_SPACINGTYPE_EXACT = 2;
|
||||
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLength startOffset;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedEnumeration method;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedEnumeration spacing;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLength startOffset;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedEnumeration method;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedEnumeration spacing;
|
||||
};
|
||||
|
||||
SVGTextPathElement includes SVGURIReference;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue