fune/dom/tests/browser/load_forever.sjs
Nika Layzell f2ced4c9c9 Bug 1709346 - Part 2: Add test for cancelling a long-running load by removing its subframes, r=kmag
This seems to be the behaviour which was causing the failures with twitter embeds.

Differential Revision: https://phabricator.services.mozilla.com/D115707
2021-06-03 16:59:32 +00:00

15 lines
473 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
let gResponses = [];
function handleRequest(request, response) {
response.seizePower();
response.write("HTTP/1.1 200 OK\r\n");
response.write("Content-Type: text/plain; charset=utf-8\r\n");
response.write("Cache-Control: no-cache, must-revalidate\r\n");
response.write("\r\n");
// Keep the response alive indefinitely.
gResponses.push(response);
}