summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGElement.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGElement.idl12
1 files changed, 7 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGElement.idl b/chromium/third_party/WebKit/Source/core/svg/SVGElement.idl
index d27e2abb355..d18904f6412 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGElement.idl
+++ b/chromium/third_party/WebKit/Source/core/svg/SVGElement.idl
@@ -23,17 +23,19 @@
[
Custom=Wrap,
] interface SVGElement : Element {
- [TreatNullAs=NullString] attribute DOMString xmlbase;
- readonly attribute SVGSVGElement ownerSVGElement;
- readonly attribute SVGElement viewportElement;
+ attribute DOMString xmlbase;
+ [TypeChecking=Interface|Nullable] readonly attribute SVGSVGElement? ownerSVGElement;
+ [TypeChecking=Interface|Nullable] readonly attribute SVGElement? viewportElement;
attribute DOMString xmllang;
attribute DOMString xmlspace;
- readonly attribute SVGAnimatedString className;
+ [MeasureAs=SVGClassName] readonly attribute SVGAnimatedString className;
+
readonly attribute CSSStyleDeclaration style;
- CSSValue getPresentationAttribute([Default=Undefined] optional DOMString name);
+ [CustomElementCallbacks] attribute long tabIndex;
};
SVGElement implements GlobalEventHandlers;
+