summaryrefslogtreecommitdiffstats
path: root/dom/security/test/hsts/browser_hsts-priming_allow_display.js
blob: 06546ca655687948874151765f48f94680ed43f9 (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
/*
 * Description of the test:
 *   Check that HSTS priming occurs correctly with mixed content when display
 *   content is allowed.
 */
'use strict';

//jscs:disable
add_task(function*() {
  //jscs:enable
  Services.obs.addObserver(Observer, "console-api-log-event", false);
  Services.obs.addObserver(Observer, "http-on-examine-response", false);
  registerCleanupFunction(do_cleanup);

  let which = "allow_display";

  SetupPrefTestEnvironment(which);

  for (let server of Object.keys(test_servers)) {
    yield execute_test(server, test_settings[which].mimetype);
  }

  SpecialPowers.popPrefEnv();
});