summaryrefslogtreecommitdiffstats
path: root/dom/webidl
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-06-10 01:19:37 +0000
committerMoonchild <moonchild@palemoon.org>2020-06-10 01:19:37 +0000
commit8797b20746cd80c51cc56225f70ddea6c6b94f9d (patch)
tree5517d461c0c43f2927708c2c251fbba8e37dd757 /dom/webidl
parent47db6b4b5e8ca41c93964e964238fe85bdd7e23b (diff)
downloadUXP-8797b20746cd80c51cc56225f70ddea6c6b94f9d.tar
UXP-8797b20746cd80c51cc56225f70ddea6c6b94f9d.tar.gz
UXP-8797b20746cd80c51cc56225f70ddea6c6b94f9d.tar.lz
UXP-8797b20746cd80c51cc56225f70ddea6c6b94f9d.tar.xz
UXP-8797b20746cd80c51cc56225f70ddea6c6b94f9d.zip
Issue #1585 - Replace node.rootNode with node.getRootNode()
This removes the (default disabled) node.rootNode readonly attribute and replaces it with a node.getRootNode() function per WhatWG spec discussion. Based on work by John Dai <jdai@mozilla.com>
Diffstat (limited to 'dom/webidl')
-rw-r--r--dom/webidl/Node.webidl9
1 files changed, 7 insertions, 2 deletions
diff --git a/dom/webidl/Node.webidl b/dom/webidl/Node.webidl
index 8b6dca788..c9fb7e77e 100644
--- a/dom/webidl/Node.webidl
+++ b/dom/webidl/Node.webidl
@@ -38,8 +38,8 @@ interface Node : EventTarget {
readonly attribute boolean isConnected;
[Pure]
readonly attribute Document? ownerDocument;
- [Pure, Pref="dom.node.rootNode.enabled"]
- readonly attribute Node rootNode;
+ [Pure]
+ Node getRootNode(optional GetRootNodeOptions options);
[Pure]
readonly attribute Node? parentNode;
[Pure]
@@ -113,3 +113,8 @@ interface Node : EventTarget {
readonly attribute AccessibleNode? accessibleNode;
#endif
};
+
+dictionary GetRootNodeOptions {
+ boolean composed = false;
+};
+