summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/console/console-log-shadowrealm-manual.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/console/console-log-shadowrealm-manual.html')
-rw-r--r--testing/web-platform/tests/console/console-log-shadowrealm-manual.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/web-platform/tests/console/console-log-shadowrealm-manual.html b/testing/web-platform/tests/console/console-log-shadowrealm-manual.html
new file mode 100644
index 0000000000..b091a850c0
--- /dev/null
+++ b/testing/web-platform/tests/console/console-log-shadowrealm-manual.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<mete charset=utf-8>
+<title>Console Logging Manual Test</title>
+<p>Open the console inside the developer tools. It should contain one entry saying "test passed".</p>
+<script>
+const sr = new ShadowRealm();
+sr.evaluate(`
+ console.log("test passed");
+`);
+</script>