trisquel-icecat/icecat/devtools/client/webconsole/test/browser/test-console-evaluation-context-selector.html
2025-10-06 02:35:48 -06:00

18 lines
493 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test evaluation context selector</title>
</head>
<body>
<h1 id="top-level">Test evaluation context selector</h1>
<script>
"use strict";
console.log("top-level", document);
globalThis.foobar = "hello";
globalThis.foobaz = "world";
globalThis.worker = new Worker(`data:application/javascript,console.log("worker")`, { name: "my worker" });
</script>
</body>
</html>