mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
18 lines
431 B
HTML
18 lines
431 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
asyncTest(async done => {
|
||
|
|
window.addEventListener("message", event => {
|
||
|
|
println(event.data);
|
||
|
|
done();
|
||
|
|
});
|
||
|
|
|
||
|
|
let win = window.open("../../data/window-barprops-popout-window.html", "_blank", "popup=true");
|
||
|
|
|
||
|
|
if (!win) {
|
||
|
|
println("Couldn't open window");
|
||
|
|
done();
|
||
|
|
}
|
||
|
|
});
|
||
|
|
</script>
|