OLD | NEW |
1 [ | 1 [ |
2 NoInterfaceObject | 2 NoInterfaceObject |
3 ] interface ParentNode { | 3 ] interface ParentNode { |
4 [PerWorldBindings] readonly attribute HTMLCollection children; | 4 [PerWorldBindings] readonly attribute HTMLCollection children; |
5 [PerWorldBindings] readonly attribute Element firstElementChild; | 5 [PerWorldBindings] readonly attribute Element firstElementChild; |
6 [PerWorldBindings] readonly attribute Element lastElementChild; | 6 [PerWorldBindings] readonly attribute Element lastElementChild; |
7 [PerWorldBindings] readonly attribute unsigned long childElementCount; | 7 [PerWorldBindings] readonly attribute unsigned long childElementCount; |
8 }; | 8 }; |
9 | 9 |
10 Document implements ParentNode; | |
11 DocumentFragment implements ParentNode; | |
12 Element implements ParentNode; | |
OLD | NEW |