mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 16:09:23 +00:00
9 lines
280 B
HTML
9 lines
280 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const realm = new ShadowRealm();
|
|
const result = realm.evaluate(`() => self.btoa('Hello, world!')`)();
|
|
println(`Shadow realm evaluation returned: ${result}`);
|
|
});
|
|
</script>
|