Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(833)

Unified Diff: Source/core/dom/Document.idl

Issue 967753003: Add the NonElementParentNode interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/Document.idl
diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl
index f73961540029c56148bb6146aa1894c162171fb6..9bd22f4bb496f43d121043e4775809a60b33aa4f 100644
--- a/Source/core/dom/Document.idl
+++ b/Source/core/dom/Document.idl
@@ -83,10 +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);
-
// https://html.spec.whatwg.org/#the-document-object
// resource metadata management
@@ -228,3 +224,4 @@ enum VisibilityState { "hidden", "visible", "prerender", "unloaded" };
Document implements GlobalEventHandlers;
Document implements ParentNode;
+Document implements NonElementParentNode;

Powered by Google App Engine
This is Rietveld 408576698