mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-06 19:29:24 +02:00
MozReview-Commit-ID: 5KC23kzaCFN --HG-- extra : rebase_source : 6a7541b5ffe85d275bc16194c155ad43f93d52ae
9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
"use strict";
|
|
|
|
/* eslint-env worker */
|
|
|
|
onmessage = function(event) {
|
|
fetch("https://example.com/example.txt").then(() => {
|
|
postMessage("Done!");
|
|
});
|
|
};
|