mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
9 lines
259 B
HTML
9 lines
259 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const realm = new ShadowRealm();
|
|
const result = realm.evaluate(`() => 1 + 1`)();
|
|
println(`Shadow realm evaluation returned: ${result}`);
|
|
});
|
|
</script>
|