mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D14017 --HG-- extra : moz-landing-system : lando
6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
onmessage = function(evt) {
|
|
console.time("bug1004814");
|
|
setTimeout(function() {
|
|
console.timeEnd("bug1004814");
|
|
}, 200);
|
|
};
|