mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:27:43 +00:00
LibWeb: Add comments and missing items of various IDL files
This commit is contained in:
parent
fc46def2f5
commit
169d24ae2e
75 changed files with 233 additions and 129 deletions
|
@ -3,15 +3,16 @@
|
|||
[Exposed=Window]
|
||||
interface SVGGradientElement : SVGElement {
|
||||
|
||||
// Spread Method Types
|
||||
const unsigned short SVG_SPREADMETHOD_UNKNOWN = 0;
|
||||
const unsigned short SVG_SPREADMETHOD_PAD = 1;
|
||||
const unsigned short SVG_SPREADMETHOD_REFLECT = 2;
|
||||
const unsigned short SVG_SPREADMETHOD_REPEAT = 3;
|
||||
// Spread Method Types
|
||||
const unsigned short SVG_SPREADMETHOD_UNKNOWN = 0;
|
||||
const unsigned short SVG_SPREADMETHOD_PAD = 1;
|
||||
const unsigned short SVG_SPREADMETHOD_REFLECT = 2;
|
||||
const unsigned short SVG_SPREADMETHOD_REPEAT = 3;
|
||||
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedEnumeration gradientUnits;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedTransformList gradientTransform;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedEnumeration spreadMethod;
|
||||
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedEnumeration gradientUnits;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedTransformList gradientTransform;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedEnumeration spreadMethod;
|
||||
};
|
||||
|
||||
// FIXME: SVGGradientElement includes SVGURIReference;
|
||||
|
|
|
@ -4,21 +4,22 @@
|
|||
[Exposed=Window]
|
||||
interface SVGTextContentElement : SVGGraphicsElement {
|
||||
|
||||
// lengthAdjust Types
|
||||
const unsigned short LENGTHADJUST_UNKNOWN = 0;
|
||||
const unsigned short LENGTHADJUST_SPACING = 1;
|
||||
const unsigned short LENGTHADJUST_SPACINGANDGLYPHS = 2;
|
||||
// lengthAdjust Types
|
||||
const unsigned short LENGTHADJUST_UNKNOWN = 0;
|
||||
const unsigned short LENGTHADJUST_SPACING = 1;
|
||||
const unsigned short LENGTHADJUST_SPACINGANDGLYPHS = 2;
|
||||
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLength textLength;
|
||||
// FIXME:[SameObject] readonly attribute SVGAnimatedEnumeration lengthAdjust;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLength textLength;
|
||||
// FIXME:[SameObject] readonly attribute SVGAnimatedEnumeration lengthAdjust;
|
||||
|
||||
long getNumberOfChars();
|
||||
// FIXME: float getComputedTextLength();
|
||||
// FIXME: float getSubStringLength(unsigned long charnum, unsigned long nchars);
|
||||
// FIXME: DOMPoint getStartPositionOfChar(unsigned long charnum);
|
||||
// FIXME: DOMPoint getEndPositionOfChar(unsigned long charnum);
|
||||
// FIXME: DOMRect getExtentOfChar(unsigned long charnum);
|
||||
// FIXME: float getRotationOfChar(unsigned long charnum);
|
||||
// FIXME: long getCharNumAtPosition(optional DOMPointInit point = {});
|
||||
// FIXME: undefined selectSubString(unsigned long charnum, unsigned long nchars);
|
||||
|
||||
long getNumberOfChars();
|
||||
// FIXME: float getComputedTextLength();
|
||||
// FIXME: float getSubStringLength(unsigned long charnum, unsigned long nchars);
|
||||
// FIXME: DOMPoint getStartPositionOfChar(unsigned long charnum);
|
||||
// FIXME: DOMPoint getEndPositionOfChar(unsigned long charnum);
|
||||
// FIXME: DOMRect getExtentOfChar(unsigned long charnum);
|
||||
// FIXME: float getRotationOfChar(unsigned long charnum);
|
||||
// FIXME: long getCharNumAtPosition(optional DOMPointInit point = {});
|
||||
// FIXME: undefined selectSubString(unsigned long charnum, unsigned long nchars);
|
||||
};
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
// https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextPositioningElement
|
||||
[Exposed=Window]
|
||||
interface SVGTextPositioningElement : SVGTextContentElement {
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList x;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList y;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList dx;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList dy;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedNumberList rotate;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList x;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList y;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList dx;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList dy;
|
||||
// FIXME: [SameObject] readonly attribute SVGAnimatedNumberList rotate;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue