mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-03 23:52:08 +00:00
8 lines
293 B
HTML
8 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>
|