mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-23 09:41:33 +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:
@ -15,5 +15,5 @@ interface SVGFEImageElement : SVGElement {
|
||||
readonly attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio;
|
||||
};
|
||||
|
||||
SVGFEImageElement implements SVGFilterPrimitiveStandardAttributes;
|
||||
SVGFEImageElement implements SVGURIReference;
|
||||
SVGFEImageElement includes SVGFilterPrimitiveStandardAttributes;
|
||||
SVGFEImageElement includes SVGURIReference;
|
||||
|
Reference in New Issue
Block a user