1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-27 13:10:46 +00:00
Files
UXP/dom/workers/test/WorkerDebugger_frozen_iframe1.html
T

16 lines
309 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script>
var worker = new Worker("WorkerDebugger_frozen_worker1.js");
worker.onmessage = function () {
parent.postMessage("ready", "*");
};
</script>
</head>
<body>
This is page 1.
</body>
<html>