Bug 1943514 - Close the RC sidebar panel when users opt out of/turn off Review Checke...
[gecko.git] / dom / xslt / tests / mochitest / file_bug1769155.html
blob60ee2ac02f547e0fb45df261e0be41441d13fae7
1 <html>
2 <head>
3 <script>
4 addEventListener("pageshow", () => {
5 // Let's unblock the synchronous XHR in the opener.
6 let xhr = new XMLHttpRequest();
7 xhr.open("GET", "bug1769155.sjs?stop", false);
8 xhr.addEventListener("load", () => {
9 opener.postMessage("redirectDone", "*");
10 });
11 xhr.send();
12 });
13 </script>
14 </head>
15 </html>