mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
See: https://github.com/whatwg/html/pull/10847 Which also fixes a crash when window.open is given a blob URL which is not present in the Blob URL registry.
8 lines
167 B
HTML
8 lines
167 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
window.open('blob:file://').close();
|
|
println("PASS! (Didn't crash)");
|
|
})
|
|
</script>
|