diff options
Diffstat (limited to 'dom/xhr/tests/file_sync_xhr_nested_helper.html')
-rw-r--r-- | dom/xhr/tests/file_sync_xhr_nested_helper.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dom/xhr/tests/file_sync_xhr_nested_helper.html b/dom/xhr/tests/file_sync_xhr_nested_helper.html new file mode 100644 index 0000000000..9b25a4453b --- /dev/null +++ b/dom/xhr/tests/file_sync_xhr_nested_helper.html @@ -0,0 +1,30 @@ +<!DOCTYPE HTML> +<html> + <body> + <input /> + <script> + const input = document.querySelector("input"); + input.addEventListener("keydown", function() { + window.opener.receivedInput(); + window.close(); + }); + + function startSlowXHR() { + setTimeout(function() { + input.focus(); + SpecialPowers.loadChromeScript(() => { + /* eslint-env mozilla/chrome-script */ + var win = Services.wm.getMostRecentBrowserWindow(); + EventUtils.synthesizeKey("a", {}, win); + }); + + var xhr = new XMLHttpRequest(); + xhr.open("GET", "slow.sjs", false); + xhr.send(null); + window.opener.childXHRFinished = true; + }, 0); + } + + </script> + </body> +</html> |