Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / workers / shared-worker-constructor-expected.txt
blobd2497c5022e92114f842f29213f867a7676005f2
1 Test SharedWorker constructor functionality. Should print a series of PASS messages, followed with DONE.
3 PASS: toString exception propagated correctly.
4 PASS: trying to create workers recursively resulted in an exception (RangeError: Maximum call stack size exceeded)
5 PASS: invoking SharedWorker constructor without arguments resulted in an exception (TypeError: Failed to construct 'SharedWorker': 1 argument required, but only 0 present.)
6 PASS: invoking SharedWorker constructor without name did not result in an exception
7 PASS: invoking SharedWorker constructor with null name did not result in an exception
8 PASS: invoking SharedWorker constructor with undefined name did not result in an exception
9 PASS: SharedWorker constructor succeeded: [object SharedWorker]
10 DONE