mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:37:44 +00:00
LibWeb: Add imports to all IDL files that depend on others
This commit is contained in:
parent
eccdf4eb4b
commit
a59800b4a0
127 changed files with 303 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGGeometryElement.idl>
|
||||
|
||||
[Exposed=Window]
|
||||
interface SVGCircleElement : SVGGeometryElement {
|
||||
// [SameObject] readonly attribute SVGAnimatedLength cx;
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#import <DOM/Element.idl>
|
||||
#import <HTML/DOMStringMap.idl>
|
||||
|
||||
interface SVGElement : Element {
|
||||
// FIXME: This should come from a HTMLOrSVGElement mixin
|
||||
[SameObject] readonly attribute DOMStringMap dataset;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGGeometryElement.idl>
|
||||
|
||||
[Exposed=Window]
|
||||
interface SVGEllipseElement : SVGGeometryElement {
|
||||
// [SameObject] readonly attribute SVGAnimatedLength cx;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGGraphicsElement.idl>
|
||||
|
||||
interface SVGGeometryElement : SVGGraphicsElement {
|
||||
|
||||
};
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGElement.idl>
|
||||
|
||||
interface SVGGraphicsElement : SVGElement {
|
||||
|
||||
};
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGGeometryElement.idl>
|
||||
|
||||
[Exposed=Window]
|
||||
interface SVGLineElement : SVGGeometryElement {
|
||||
// [SameObject] readonly attribute SVGAnimatedLength x1;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGGeometryElement.idl>
|
||||
|
||||
interface SVGPathElement : SVGGeometryElement {
|
||||
|
||||
};
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGGeometryElement.idl>
|
||||
|
||||
[Exposed=Window]
|
||||
interface SVGPolygonElement : SVGGeometryElement {
|
||||
};
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGGeometryElement.idl>
|
||||
|
||||
[Exposed=Window]
|
||||
interface SVGPolylineElement : SVGGeometryElement {
|
||||
};
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGGeometryElement.idl>
|
||||
|
||||
[Exposed=Window]
|
||||
interface SVGRectElement : SVGGeometryElement {
|
||||
// [SameObject] readonly attribute SVGAnimatedLength x;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#import <SVG/SVGGraphicsElement.idl>
|
||||
|
||||
interface SVGSVGElement : SVGGraphicsElement {
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue