mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-07-31 03:51:56 +00:00
web-sys: Use mixins instead of [NoInterfaceObject]
interfaces and implements
I think these might all be from before WebIDL mixins existed. Either way, multiple inheritance of interfaces that don't have exposed interface objects is equivalent to mixins.
This commit is contained in:
@@ -68,6 +68,5 @@ interface SVGSVGElement : SVGGraphicsElement {
|
||||
Element? getElementById(DOMString elementId);
|
||||
};
|
||||
|
||||
SVGSVGElement implements SVGFitToViewBox;
|
||||
SVGSVGElement implements SVGZoomAndPanValues;
|
||||
|
||||
SVGSVGElement includes SVGFitToViewBox;
|
||||
SVGSVGElement includes SVGZoomAndPanValues;
|
||||
|
Reference in New Issue
Block a user