mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
9 lines
293 B
HTML
9 lines
293 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const realm = new ShadowRealm();
|
|
const result = realm.evaluate(`() => new URL('https://example.com/path?name=value').hostname`)();
|
|
println(`Shadow realm evaluation returned: ${result}`);
|
|
});
|
|
</script>
|