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

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

Issue 17376006: Implement WebIDL implements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: With ParentNode.idl Created 7 years, 6 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
« Source/bindings/scripts/preprocess_idls.py ('K') | « Source/core/dom/Element.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ParentNode.idl
diff --git a/Source/core/dom/ParentNode.idl b/Source/core/dom/ParentNode.idl
new file mode 100644
index 0000000000000000000000000000000000000000..6668c816137853e19acc3e554f8697b8e22a6ecd
--- /dev/null
+++ b/Source/core/dom/ParentNode.idl
@@ -0,0 +1,12 @@
+[
+ NoInterfaceObject
+] interface ParentNode {
+ readonly attribute HTMLCollection children;
arv (Not doing code reviews) 2013/06/18 15:18:21 Is there a problem if we have [PerWorldBindings] h
+ readonly attribute Element firstElementChild;
+ readonly attribute Element lastElementChild;
+ readonly attribute unsigned long childElementCount;
+};
+
+Document implements ParentNode;
+DocumentFragment implements ParentNode;
+Element implements ParentNode;
« Source/bindings/scripts/preprocess_idls.py ('K') | « Source/core/dom/Element.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698