ladybird/Tests/LibWeb/Text/input/HTML/window-barprops-popout.html
Totto16 11280897d3 LibWeb: Add Extended Tests for Window BarProps
Add Tests for Window BarProps in popout windows
2025-03-29 02:35:27 +00:00

17 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>