test-console-evaluation-context-selector.html (493B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <title>Test evaluation context selector</title> 6 </head> 7 <body> 8 <h1 id="top-level">Test evaluation context selector</h1> 9 <script> 10 "use strict"; 11 console.log("top-level", document); 12 globalThis.foobar = "hello"; 13 globalThis.foobaz = "world"; 14 15 globalThis.worker = new Worker(`data:application/javascript,console.log("worker")`, { name: "my worker" }); 16 </script> 17 </body> 18 </html>