blob: 0524e1c4cfbffa117c8e36624cf74721ec80087d (
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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const TEST_URI = "https://example.com/browser/devtools/client/webconsole/" +
"test/test-bug-837351-security-errors.html";
add_task(function* () {
yield pushPrefEnv();
yield loadTab(TEST_URI);
let hud = yield openConsole();
let button = hud.ui.rootElement.querySelector(".webconsole-filter-button[category=\"security\"]");
ok(button, "Found security button in the web console");
yield waitForMessages({
webconsole: hud,
messages: [
{
name: "Logged blocking mixed active content",
text: "Blocked loading mixed active content \u201chttp://example.com/\u201d",
category: CATEGORY_SECURITY,
severity: SEVERITY_ERROR
},
],
});
});
function pushPrefEnv() {
let deferred = promise.defer();
let options = {
set: [["security.mixed_content.block_active_content", true]]
};
SpecialPowers.pushPrefEnv(options, deferred.resolve);
return deferred.promise;
}
|