summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/ChildNode.idl
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
commit1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c (patch)
tree46dcd36c86e7fbc6e5df36deb463b33e9967a6f7 /Source/WebCore/dom/ChildNode.idl
parent32761a6cee1d0dee366b885b7b9c777e67885688 (diff)
downloadWebKitGtk-tarball-master.tar.gz
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();
};
-