mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-16 13:56:29 +00:00
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
![]() |
"use strict";
|
||
|
|
||
|
console.log("Can you see this console message?");
|
||
|
console.warn("Can you see this second console message?");
|
||
|
|
||
|
var worker = new Worker("WorkerDebugger.console_childWorker.js");
|
||
|
|
||
|
setInterval(function() {
|
||
|
console.log("Random message.");
|
||
|
}, 200);
|