mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
0a8ff0ad85
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35951 --HG-- extra : source : 62f3501af4bc1c0bd1ee1977a28aee04706a6663
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
/**
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
"use strict";
|
|
|
|
onconnect = function(evt) {
|
|
console.profile("Hello profiling from a SharedWorker!");
|
|
console.log("Hello world from a SharedWorker!");
|
|
evt.ports[0].postMessage("ok!");
|
|
};
|