diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /dom/base/test/script_bug602838.sjs | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/base/test/script_bug602838.sjs')
-rw-r--r-- | dom/base/test/script_bug602838.sjs | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dom/base/test/script_bug602838.sjs b/dom/base/test/script_bug602838.sjs new file mode 100644 index 0000000000..2c60a8d6e1 --- /dev/null +++ b/dom/base/test/script_bug602838.sjs @@ -0,0 +1,43 @@ +function setOurState(data) { + x = { + data, + QueryInterface(iid) { + return this; + }, + }; + x.wrappedJSObject = x; + setObjectState("bug602838", x); +} + +function getOurState() { + var data; + getObjectState("bug602838", function(x) { + // x can be null if no one has set any state yet + if (x) { + data = x.wrappedJSObject.data; + } + }); + return data; +} + +function handleRequest(request, response) { + if (request.queryString) { + let blockedResponse = getOurState(); + if (typeof blockedResponse == "object") { + blockedResponse.finish(); + setOurState(null); + } else { + setOurState("unblocked"); + } + return; + } + response.setHeader("Cache-Control", "no-cache", false); + response.setHeader("Content-Type", "text/javascript", false); + response.write( + "ok(asyncRan, 'Async script should have run first.'); firstRan = true;" + ); + if (getOurState() != "unblocked") { + response.processAsync(); + setOurState(response); + } +} |