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..fef5c3b6ef268681a2c11ac1e303bce531081210 |
--- /dev/null |
+++ b/Source/core/dom/ParentNode.idl |
@@ -0,0 +1,12 @@ |
+[ |
+ NoInterfaceObject |
+] interface ParentNode { |
+ [PerWorldBindings] readonly attribute HTMLCollection children; |
+ [PerWorldBindings] readonly attribute Element firstElementChild; |
+ [PerWorldBindings] readonly attribute Element lastElementChild; |
+ [PerWorldBindings] readonly attribute unsigned long childElementCount; |
+}; |
+ |
+Document implements ParentNode; |
+DocumentFragment implements ParentNode; |
+Element implements ParentNode; |