Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / resources / worker-with-throw.js
blob5d8503d8b36b43852e2e00b38d7f324d5c0bb9a6
1 function foo()
3     throw new Error();
5 function boo()
7     foo();
10 onmessage = function(event) {
11     boo();