summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/ChildNode.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/ChildNode.idl')
-rw-r--r--Source/WebCore/dom/ChildNode.idl14
1 files changed, 5 insertions, 9 deletions
diff --git a/Source/WebCore/dom/ChildNode.idl b/Source/WebCore/dom/ChildNode.idl
index a45bcf484..54f70a341 100644
--- a/Source/WebCore/dom/ChildNode.idl
+++ b/Source/WebCore/dom/ChildNode.idl
@@ -18,16 +18,12 @@
* Boston, MA 02110-1301, USA.
*/
-// DOM 4
+// https://dom.spec.whatwg.org/#childnode
[
NoInterfaceObject,
] interface ChildNode {
- // readonly attribute Element? previousElementSibling;
- // readonly attribute Element? nextElementSibling;
-
- // void before((Node or DOMString)... nodes);
- // void after((Node or DOMString)... nodes);
- // void replace((Node or DOMString)... nodes);
- [RaisesException] void remove();
+ [CEReactions, Unscopable, MayThrowException] void before((Node or DOMString)... nodes);
+ [CEReactions, Unscopable, MayThrowException] void after((Node or DOMString)... nodes);
+ [CEReactions, Unscopable, MayThrowException] void replaceWith((Node or DOMString)... nodes);
+ [CEReactions, Unscopable, MayThrowException] void remove();
};
-