mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 23:42:53 +03:00
4fe0cbcf85
This improves the debuggability of many live web pages :^)
43 lines
1.6 KiB
Plaintext
43 lines
1.6 KiB
Plaintext
#import <SVG/SVGGraphicsElement.idl>
|
|
#import <SVG/SVGFitToViewBox.idl>
|
|
#import <Geometry/DOMRectReadOnly.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/struct.html#InterfaceSVGSVGElement
|
|
[Exposed=Window]
|
|
interface SVGSVGElement : SVGGraphicsElement {
|
|
[SameObject] readonly attribute SVGAnimatedLength x;
|
|
[SameObject] readonly attribute SVGAnimatedLength y;
|
|
[SameObject] readonly attribute SVGAnimatedLength width;
|
|
[SameObject] readonly attribute SVGAnimatedLength height;
|
|
|
|
attribute float currentScale;
|
|
[SameObject] readonly attribute DOMPointReadOnly currentTranslate;
|
|
|
|
NodeList getIntersectionList(DOMRectReadOnly rect, SVGElement? referenceElement);
|
|
NodeList getEnclosureList(DOMRectReadOnly rect, SVGElement? referenceElement);
|
|
boolean checkIntersection(SVGElement element, DOMRectReadOnly rect);
|
|
boolean checkEnclosure(SVGElement element, DOMRectReadOnly rect);
|
|
|
|
undefined deselectAll();
|
|
|
|
// FIMXE: SVGNumber createSVGNumber();
|
|
SVGLength createSVGLength();
|
|
[FIXME] SVGAngle createSVGAngle();
|
|
DOMPoint createSVGPoint();
|
|
DOMMatrix createSVGMatrix();
|
|
DOMRect createSVGRect();
|
|
SVGTransform createSVGTransform();
|
|
[FIXME] SVGTransform createSVGTransformFromMatrix(optional DOMMatrix2DInit matrix = {});
|
|
|
|
Element getElementById(DOMString elementId);
|
|
|
|
// Deprecated methods that have no effect when called,
|
|
// but which are kept for compatibility reasons.
|
|
unsigned long suspendRedraw(unsigned long maxWaitMilliseconds);
|
|
undefined unsuspendRedraw(unsigned long suspendHandleID);
|
|
undefined unsuspendRedrawAll();
|
|
undefined forceRedraw();
|
|
};
|
|
|
|
SVGSVGElement includes SVGFitToViewBox;
|