| Index: core/svg/SVGSVGElement.idl
|
| diff --git a/core/svg/SVGSVGElement.idl b/core/svg/SVGSVGElement.idl
|
| index e32c0a395564dbcf38ce9589dc5136b8550ff164..a6e5471e566a31e961078d73d69c7c141be3f8d6 100644
|
| --- a/core/svg/SVGSVGElement.idl
|
| +++ b/core/svg/SVGSVGElement.idl
|
| @@ -24,12 +24,8 @@
|
| // TODO: Fix SVGSVGElement inheritance (css::DocumentCSS)!
|
| // TODO: no events::DocumentEvent available!
|
| interface SVGSVGElement : SVGStyledElement,
|
| - SVGTests,
|
| SVGLangSpace,
|
| - SVGExternalResourcesRequired,
|
| - SVGTransformable,
|
| - SVGFitToViewBox,
|
| - SVGZoomAndPan {
|
| + SVGTransformable {
|
| readonly attribute SVGAnimatedLength x;
|
| readonly attribute SVGAnimatedLength y;
|
| readonly attribute SVGAnimatedLength width;
|
| @@ -76,3 +72,8 @@ interface SVGSVGElement : SVGStyledElement,
|
| Element getElementById([Default=Undefined] optional DOMString elementId);
|
| };
|
|
|
| +SVGSVGElement implements SVGExternalResourcesRequired;
|
| +SVGSVGElement implements SVGTests;
|
| +SVGSVGElement implements SVGFitToViewBox;
|
| +SVGSVGElement implements SVGZoomAndPan;
|
| +
|
|
|