Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector-protocol / debugger / resources / dedicated-worker-suspend-setTimeout.js
blob899d822b8d2f8b728a326b695cabe37abc3c3d9f
1 var global_value = 1;
2 onmessage = function(event) {
3 setTimeout(function()
5 global_value = 2014;
6 }, 0);
7 debugger;
8 };