mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 05:35:31 +00:00
16 lines
309 B
HTML
16 lines
309 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
var worker = new Worker("WorkerDebugger_frozen_worker2.js");
|
|
worker.onmessage = function () {
|
|
parent.postMessage("ready", "*");
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
This is page 2.
|
|
</body>
|
|
<html>
|