| Index: Source/core/dom/Document.idl
|
| diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl
|
| index 89bf22b9ff32b7a1f344f12ba9209bcb1cf09276..3fb93efe04d4b331d3c76985636e63849d480401 100644
|
| --- a/Source/core/dom/Document.idl
|
| +++ b/Source/core/dom/Document.idl
|
| @@ -83,9 +83,6 @@ enum VisibilityState { "hidden", "visible", "prerender", "unloaded" };
|
| [RaisesException=Setter, MeasureAs=DocumentXMLVersion] attribute DOMString? xmlVersion;
|
| [RaisesException=Setter, MeasureAs=DocumentXMLStandalone] attribute boolean xmlStandalone;
|
|
|
| - // https://dom.spec.whatwg.org/#interface-nonelementparentnode
|
| - [PerWorldBindings] Element? getElementById(DOMString elementId);
|
| -
|
| // HTML
|
| // https://html.spec.whatwg.org/#the-document-object
|
|
|
| @@ -235,3 +232,4 @@ enum VisibilityState { "hidden", "visible", "prerender", "unloaded" };
|
|
|
| Document implements GlobalEventHandlers;
|
| Document implements ParentNode;
|
| +Document implements NonElementParentNode;
|
|
|