| Index: Source/core/dom/Document.idl
|
| diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl
|
| index 67015a8ae9ce4dc6b4fd36b9e8f0a26235d41e20..ea0463d8f306a1156911c5e382fe3bef6587e812 100644
|
| --- a/Source/core/dom/Document.idl
|
| +++ b/Source/core/dom/Document.idl
|
| @@ -38,14 +38,14 @@ typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext;
|
| [RaisesException, MeasureAs=DocumentCreateCDATASection] CDATASection createCDATASection([Default=Undefined] optional DOMString data); // Removed from DOM4.
|
| [RaisesException] ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data);
|
| [RaisesException, MeasureAs=DocumentCreateAttribute] Attr createAttribute([Default=Undefined] optional DOMString name); // Removed from DOM4.
|
| - [PerWorldBindings] HTMLCollection getElementsByTagName(DOMString localName);
|
| + [PerWorldBindings, DartNoAutoScope] HTMLCollection getElementsByTagName(DOMString localName);
|
|
|
| // Introduced in DOM Level 2:
|
|
|
| [CustomElementCallbacks, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesException] Node importNode(Node node, optional boolean deep);
|
| [CustomElementCallbacks, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifiedName);
|
| HTMLCollection getElementsByTagNameNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName);
|
| - [PerWorldBindings] Element getElementById(DOMString elementId);
|
| + [PerWorldBindings, DartNoAutoScope] Element getElementById(DOMString elementId);
|
|
|
| // DOM Level 3 Core
|
|
|
| @@ -110,7 +110,7 @@ typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext;
|
|
|
| [TreatNullAs=NullString, RaisesException] attribute DOMString cookie;
|
|
|
| - [RaisesException=Setter, CustomElementCallbacks, PerWorldBindings] attribute HTMLElement body;
|
| + [RaisesException=Setter, CustomElementCallbacks, PerWorldBindings, DartNoAutoScope] attribute HTMLElement body;
|
|
|
| readonly attribute HTMLHeadElement head;
|
| readonly attribute HTMLCollection images;
|
| @@ -120,7 +120,7 @@ typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext;
|
| readonly attribute HTMLCollection anchors;
|
| readonly attribute DOMString lastModified;
|
|
|
| - [PerWorldBindings] NodeList getElementsByName([Default=Undefined] optional DOMString elementName);
|
| + [PerWorldBindings, DartNoAutoScope] NodeList getElementsByName([Default=Undefined] optional DOMString elementName);
|
|
|
| [PerWorldBindings, ActivityLogging=ForIsolatedWorlds, PutForwards=href] readonly attribute Location location;
|
|
|
|
|