1
0
Fork 0
firefox/dom/xslt/tests/mochitest/file_bug1769155.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
397 B
HTML

<html>
<head>
<script>
addEventListener("pageshow", () => {
// Let's unblock the synchronous XHR in the opener.
let xhr = new XMLHttpRequest();
xhr.open("GET", "bug1769155.sjs?stop", false);
xhr.addEventListener("load", () => {
opener.postMessage("redirectDone", "*");
});
xhr.send();
});
</script>
</head>
</html>