| Index: Source/core/dom/Document.idl
|
| diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl
|
| index ea5647cc24bcbce4e12f40b140e723ceed4593f3..37a2b43a130fcf3a0bce4bea1f647bbcddc9a6c0 100644
|
| --- a/Source/core/dom/Document.idl
|
| +++ b/Source/core/dom/Document.idl
|
| @@ -42,8 +42,8 @@ typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext;
|
|
|
| // Introduced in DOM Level 2:
|
|
|
| - [CustomElementCallbacks, PerWorldBindings, LogActivity, RaisesException] Node importNode(Node node, optional boolean deep);
|
| - [CustomElementCallbacks, PerWorldBindings, LogActivity, RaisesException] Element createElementNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifiedName);
|
| + [CustomElementCallbacks, LogActivity, RaisesException] Node importNode(Node node, optional boolean deep);
|
| + [CustomElementCallbacks, LogActivity, RaisesException] Element createElementNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifiedName);
|
| [RaisesException, DeprecateAs=DocumentCreateAttributeNS] Attr createAttributeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
|
| [TreatNullAs=NullString,Default=Undefined] optional DOMString qualifiedName); // Removed from DOM4.
|
| HTMLCollection getElementsByTagNameNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName);
|
| @@ -131,7 +131,7 @@ typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext;
|
|
|
| [PerWorldBindings] NodeList getElementsByName([Default=Undefined] optional DOMString elementName);
|
|
|
| - [PerWorldBindings, LogActivity, PutForwards=href] readonly attribute Location location;
|
| + [LogActivity, PutForwards=href] readonly attribute Location location;
|
|
|
| // IE extensions
|
| [MeasureAs=DocumentCharset, TreatReturnedNullStringAs=Undefined, TreatNullAs=NullString] attribute DOMString charset;
|
| @@ -189,7 +189,7 @@ typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext;
|
| attribute EventHandler onwebkitfullscreenerror;
|
| attribute EventHandler onwebkitpointerlockchange;
|
| attribute EventHandler onwebkitpointerlockerror;
|
| - [PerWorldBindings, LogActivity=SetterOnly] attribute EventHandler onwheel;
|
| + [LogActivity=SetterOnly] attribute EventHandler onwheel;
|
|
|
| [RuntimeEnabled=Touch] Touch createTouch([Default=Undefined] optional Window window,
|
| [Default=Undefined] optional EventTarget target,
|
| @@ -206,7 +206,7 @@ typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext;
|
|
|
| [CallWith=ScriptState, CustomElementCallbacks, RaisesException] CustomElementConstructor registerElement(DOMString name, optional Dictionary options);
|
| [CustomElementCallbacks, PerWorldBindings, LogActivity, RaisesException] Element createElement(DOMString localName, [TreatNullAs=NullString] DOMString typeExtension);
|
| - [CustomElementCallbacks, PerWorldBindings, LogActivity, RaisesException] Element createElementNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifiedName,
|
| + [CustomElementCallbacks, LogActivity, RaisesException] Element createElementNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifiedName,
|
| [TreatNullAs=NullString] DOMString typeExtension);
|
|
|
| // Page visibility API.
|
|
|