mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
10 lines
159 B
JavaScript
10 lines
159 B
JavaScript
onmessage = function() {
|
|
try {
|
|
importScripts("evilWorker.js");
|
|
} catch(ex) {
|
|
postMessage("success");
|
|
return;
|
|
}
|
|
|
|
postMessage("failure");
|
|
};
|