Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / workers / resources / worker-script-error-bubbled.js
blob20dff3772dedec0d27932921aecf50a1287070b4
1 onerror = function(message, url, lineno)
3     if (url != location.href)
4         postMessage("FAIL: Bad location. Actual: " + url + " Expected: " + location.href);
5     splitUrl = url.split('/');
6     postMessage("PASS: onerror in worker context invoked for a script that has script error '" + message + "' at line " + lineno + " in " + splitUrl[splitUrl.length - 1]);
7     return false;
10 foo.bar = 0;