Pass | Should throw if none of childList, attributes, characterData are true | Asserts runPass | assert_throws_js(function "function TypeError() { [native code] }", function "() => { m.observe(document, {}); }")
at Test.<anonymous> ( /dom/nodes/MutationObserver-sanity.html:9:7) |
|
Pass | Should not throw if childList is true | Asserts runNo asserts ran |
Pass | Should not throw if attributes is true | Asserts runNo asserts ran |
Pass | Should not throw if characterData is true | Asserts runNo asserts ran |
Pass | Should not throw if attributeOldValue is true and attributes is omitted | Asserts runNo asserts ran |
Pass | Should not throw if characterDataOldValue is true and characterData is omitted | Asserts runNo asserts ran |
Pass | Should not throw if attributeFilter is present and attributes is omitted | Asserts runNo asserts ran |
Pass | Should throw if attributeOldValue is true and attributes is false | Asserts runPass | assert_throws_js(function "function TypeError() { [native code] }", function "() => { m.observe(document, { childList: true, attributeOldValue: true, attributes: false }); }")
at Test.<anonymous> ( /dom/nodes/MutationObserver-sanity.html:52:7) |
|
Pass | Should not throw if attributeOldValue and attributes are both true | Asserts runNo asserts ran |
Pass | Should throw if attributeFilter is present and attributes is false | Asserts runPass | assert_throws_js(function "function TypeError() { [native code] }", function "() => { m.observe(document, { childList: true, attributeFilter: ["abc"], attributes: false }); }")
at Test.<anonymous> ( /dom/nodes/MutationObserver-sanity.html:67:7) |
|
Pass | Should not throw if attributeFilter is present and attributes is true | Asserts runNo asserts ran |
Pass | Should throw if characterDataOldValue is true and characterData is false | Asserts runPass | assert_throws_js(function "function TypeError() { [native code] }", function "() => { m.observe(document, { childList: true, characterDataOldValue: true, characterData: false }); }")
at Test.<anonymous> ( /dom/nodes/MutationObserver-sanity.html:82:7) |
|
Pass | Should not throw if characterDataOldValue is true and characterData is true | Asserts runNo asserts ran |