Index: core/svg/SVGElement.idl |
diff --git a/core/svg/SVGElement.idl b/core/svg/SVGElement.idl |
index 4ee3be58cb83816ac8061dce03de13f87adf1ff9..1e4ac18c3bc13b741c065fd7cdb1115541069f1a 100644 |
--- a/core/svg/SVGElement.idl |
+++ b/core/svg/SVGElement.idl |
@@ -20,22 +20,17 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
-[ |
- Custom=Wrap, |
-] interface SVGElement : Element { |
- [Reflect] attribute DOMString xmlbase; |
- readonly attribute SVGSVGElement? ownerSVGElement; |
- readonly attribute SVGElement? viewportElement; |
- |
- [Reflect] attribute DOMString xmllang; |
- [Reflect] attribute DOMString xmlspace; |
- |
- [MeasureAs=SVGClassName] readonly attribute SVGAnimatedString className; |
+// http://www.w3.org/TR/SVG2/types.html#InterfaceSVGElement |
+interface SVGElement : Element { |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVGClassName] readonly attribute SVGAnimatedString className; |
readonly attribute CSSStyleDeclaration style; |
+ readonly attribute SVGSVGElement? ownerSVGElement; |
+ readonly attribute SVGElement? viewportElement; |
[CustomElementCallbacks] attribute long tabIndex; |
+ void focus(); |
+ void blur(); |
}; |
SVGElement implements GlobalEventHandlers; |
- |