blob: 10a865589f2d288f19ac246f125b357c0bd4b3ae [file] [log] [blame]
<!-- webkit-test-runner [ useEphemeralSession=true ] -->
<!DOCTYPE html>
<html>
<body>
<script src="../../resources/js-test.js"></script>
<script>
description("Tests that window.open() is working in ephemeral sessions");
jsTestIsAsync = true;
onload = () => {
w = open("about:blank");
shouldBeTrue("!!w");
finishJSTest();
}
</script>
</body>
</html>