| Index: core/dom/ParentNode.idl
|
| diff --git a/core/dom/ParentNode.idl b/core/dom/ParentNode.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..10b418e9a8750f858cb61bc50a0e26da42399ce6
|
| --- /dev/null
|
| +++ b/core/dom/ParentNode.idl
|
| @@ -0,0 +1,9 @@
|
| +[
|
| + NoInterfaceObject
|
| +] interface ParentNode {
|
| + [PerWorldBindings] readonly attribute HTMLCollection children;
|
| + [PerWorldBindings] readonly attribute Element firstElementChild;
|
| + [PerWorldBindings] readonly attribute Element lastElementChild;
|
| + [PerWorldBindings] readonly attribute unsigned long childElementCount;
|
| +};
|
| +
|
|
|