Index: Source/core/dom/Element.idl |
diff --git a/Source/core/dom/Element.idl b/Source/core/dom/Element.idl |
index cce1359ffc1af4f036f2197652941dff9640318b..e4c93c9b798e5779e8d6c443cb5dc99588316004 100644 |
--- a/Source/core/dom/Element.idl |
+++ b/Source/core/dom/Element.idl |
@@ -26,8 +26,8 @@ |
[TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString tagName; |
- [TreatReturnedNullStringAs=Null] DOMString getAttribute(DOMString name); |
- [RaisesException, CustomElementCallbacks] void setAttribute(DOMString name, DOMString value); |
+ [TreatReturnedNullStringAs=Null, DartNoAutoScope] DOMString getAttribute(DOMString name); |
+ [RaisesException, CustomElementCallbacks, DartNoAutoScope] void setAttribute(DOMString name, DOMString value); |
[CustomElementCallbacks] void removeAttribute(DOMString name); |
[MeasureAs=ElementGetAttributeNode] Attr getAttributeNode([Default=Undefined] optional DOMString name); // Removed from DOM4. |
[RaisesException, CustomElementCallbacks, MeasureAs=ElementSetAttributeNode] Attr setAttributeNode([Default=Undefined, StrictTypeChecking] optional Attr newAttr); // Removed from DOM4. |
@@ -39,8 +39,8 @@ |
// DOM Level 2 Core |
- DOMString getAttributeNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName); |
- [RaisesException, CustomElementCallbacks] void setAttributeNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifiedName, DOMString value); |
+ [DartNoAutoScope] DOMString getAttributeNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName); |
+ [RaisesException, CustomElementCallbacks, DartNoAutoScope] void setAttributeNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifiedName, DOMString value); |
[CustomElementCallbacks] void removeAttributeNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName); |
HTMLCollection getElementsByTagNameNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName); |
[MeasureAs=ElementGetAttributeNodeNS] Attr getAttributeNodeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI, |
@@ -51,7 +51,7 @@ |
[PerWorldBindings] readonly attribute CSSStyleDeclaration style; |
// DOM4 |
- [Reflect, PerWorldBindings] attribute DOMString id; |
+ [Reflect, PerWorldBindings, DartNoAutoScope] attribute DOMString id; |
[TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString namespaceURI; |
[TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, RaisesException=Setter] attribute DOMString prefix; |
[TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString localName; |