| Index: third_party/WebKit/LayoutTests/imported/wpt/dom/interfaces.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/dom/interfaces.html b/third_party/WebKit/LayoutTests/imported/wpt/dom/interfaces.html
|
| index 529c44cbd4d2c42c56c72f1df94e4a787d02ae0a..618eca1f9a1b3d13f3a0a3a0d223b0d90700f8c7 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/dom/interfaces.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/dom/interfaces.html
|
| @@ -212,6 +212,7 @@ interface Node : EventTarget {
|
|
|
| readonly attribute boolean isConnected;
|
| readonly attribute Document? ownerDocument;
|
| + Node getRootNode(optional GetRootNodeOptions options);
|
| readonly attribute Node? parentNode;
|
| readonly attribute Element? parentElement;
|
| boolean hasChildNodes();
|
| @@ -248,6 +249,9 @@ interface Node : EventTarget {
|
| Node removeChild(Node child);
|
| };
|
|
|
| +dictionary GetRootNodeOptions {
|
| + boolean composed = false;
|
| +};
|
|
|
| [Constructor,
|
| Exposed=Window]
|
|
|