blob: c5e3138100bdfa663b64145d29b747ab49d049ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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";
</script>
</body>
</html>
|