mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-07-20 16:35:27 +00:00
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
onmessage = function() {
|
|
try {
|
|
importScripts("evilWorker.js");
|
|
} catch(ex) {
|
|
postMessage("success");
|
|
return;
|
|
}
|
|
|
|
postMessage("failure");
|
|
};
|