Files
Kmake/test/fixtures/wpt/console/console-log-shadowrealm-manual.html
2026-05-26 23:36:42 -07:00

11 lines
279 B
HTML

<!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>