Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / MutationObserver / mutation-observer-constructor-expected.txt
bloba444a97918c767b0a1719236722e2ed09bd4f670
1 Test the constructor of WebKitMutationObserver
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS window.WebKitMutationObserver is non-null.
7 PASS typeof WebKitMutationObserver.prototype.observe is "function"
8 PASS typeof WebKitMutationObserver.prototype.disconnect is "function"
9 PASS typeof observer.observe is "function"
10 PASS typeof observer.disconnect is "function"
11 PASS new MutationObserver({ handleEvent: function() {} }) threw exception TypeError: Failed to construct 'MutationObserver': Callback argument must be a function.
12 PASS new MutationObserver({}) threw exception TypeError: Failed to construct 'MutationObserver': Callback argument must be a function.
13 PASS new MutationObserver(42) threw exception TypeError: Failed to construct 'MutationObserver': Callback argument must be a function.
14 PASS new MutationObserver("foo") threw exception TypeError: Failed to construct 'MutationObserver': Callback argument must be a function.
15 PASS successfullyParsed is true
17 TEST COMPLETE