mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-03 07:32:00 +00: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.
7 lines
167 B
HTML
7 lines
167 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
window.open('blob:file://').close();
|
|
println("PASS! (Didn't crash)");
|
|
})
|
|
</script>
|