summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/events/slow_image.sjs
blob: f322568be6de0ef1a7fce49a7ebffbf65dfb45da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// small red image
const IMG_BYTES = atob(
  "iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12" +
    "P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="
);

// stolen from file_blocked_script.sjs
function setGlobalState(data, key) {
  let x = {
    data,
    QueryInterface: ChromeUtils.generateQI([]),
  };
  x.wrappedJSObject = x;
  setObjectState(key, x);
}

function getGlobalState(key) {
  var data;
  getObjectState(key, function (x) {
    data = x && x.wrappedJSObject.data;
  });
  return data;
}

function handleRequest(request, response) {
  if (request.queryString == "complete") {
    // Unblock the previous request.
    response.setStatusLine(request.httpVersion, 200, "OK");
    response.setHeader("Cache-Control", "no-cache", false);
    response.setHeader("Content-Type", "application/json", false);
    response.write("true"); // the payload doesn't matter.

    let blockedResponse = getGlobalState("a11y-image");
    if (blockedResponse) {
      blockedResponse.setStatusLine(request.httpVersion, 200, "OK");
      blockedResponse.setHeader("Cache-Control", "no-cache", false);
      blockedResponse.setHeader("Content-Type", "image/png", false);
      blockedResponse.write(IMG_BYTES);
      blockedResponse.finish();

      setGlobalState(undefined, "a11y-image");
    }
  } else {
    // Getting the image
    response.processAsync();
    // Store the response in the global state
    setGlobalState(response, "a11y-image");
  }
}