mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 10:05:10 +00:00

This attribute has some compatbility issues... - The spec says it should be an SVGAnimatedRect which contains a DOMRect and a DOMReadOnlyRect. - Blink gives you an SVGAnimatedRect with 2x SVGRect - Gecko gives you an SVGAnimatedRect with 2x SVGRect? (nullable) I ended up with something similar to Gecko, an SVGAnimatedRect with 2x DOMRect? (nullable) With this fixed, we can now load https://polar.sh/ :^)
10 lines
248 B
Text
10 lines
248 B
Text
#import <SVG/SVGGraphicsElement.idl>
|
|
#import <SVG/SVGFitToViewBox.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/struct.html#InterfaceSVGSVGElement
|
|
[Exposed=Window]
|
|
interface SVGSVGElement : SVGGraphicsElement {
|
|
|
|
};
|
|
|
|
SVGSVGElement includes SVGFitToViewBox;
|