From 1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 27 Jun 2017 06:07:23 +0000 Subject: webkitgtk-2.16.5 --- Source/WebCore/dom/ChildNode.idl | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'Source/WebCore/dom/ChildNode.idl') 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(); }; - -- cgit v1.2.1