| Index: core/dom/DocumentFragment.idl
|
| diff --git a/core/dom/DocumentFragment.idl b/core/dom/DocumentFragment.idl
|
| index f02cf18775658093177ceabed31bffaf5c44b179..076c94967b541f98e5744975217b0e82f29502ae 100644
|
| --- a/core/dom/DocumentFragment.idl
|
| +++ b/core/dom/DocumentFragment.idl
|
| @@ -19,16 +19,12 @@
|
|
|
| [
|
| Constructor,
|
| - CallWith=ScriptExecutionContext
|
| + ConstructorCallWith=ScriptExecutionContext
|
| ] interface DocumentFragment : Node {
|
| // NodeSelector - Selector API
|
| [RaisesException] Element querySelector(DOMString selectors);
|
| [RaisesException] NodeList querySelectorAll(DOMString selectors);
|
| -
|
| - // ParentNode interface API
|
| - readonly attribute HTMLCollection children;
|
| - readonly attribute Element firstElementChild;
|
| - readonly attribute Element lastElementChild;
|
| - readonly attribute unsigned long childElementCount;
|
| };
|
|
|
| +DocumentFragment implements ParentNode;
|
| +
|
|
|