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/MutationObserver.idl | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'Source/WebCore/dom/MutationObserver.idl') diff --git a/Source/WebCore/dom/MutationObserver.idl b/Source/WebCore/dom/MutationObserver.idl index 9ee9792b3..f7a2c0f77 100644 --- a/Source/WebCore/dom/MutationObserver.idl +++ b/Source/WebCore/dom/MutationObserver.idl @@ -33,7 +33,17 @@ CustomIsReachable, ImplementationLacksVTable, ] interface MutationObserver { - [RaisesException] void observe(Node target, Dictionary options); + [MayThrowException] void observe(Node target, optional MutationObserverInit options); sequence takeRecords(); void disconnect(); }; + +dictionary MutationObserverInit { + boolean childList = false; + boolean attributes; + boolean characterData; + boolean subtree = false; + boolean attributeOldValue; + boolean characterDataOldValue; + sequence attributeFilter; +}; -- cgit v1.2.1