mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-26 15:02:46 +00:00
55 lines
1.8 KiB
JavaScript
55 lines
1.8 KiB
JavaScript
/* -*- 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/ */
|
|
|
|
// Load a page with tracking elements that get blocked and make sure that a
|
|
// 'learn more' link shows up in the webconsole.
|
|
|
|
"use strict";
|
|
|
|
const TEST_URI = "http://tracking.example.org/browser/devtools/client/" +
|
|
"webconsole/test/test-trackingprotection-securityerrors.html";
|
|
const LEARN_MORE_URI = "https://developer.mozilla.org/Firefox/Privacy/" +
|
|
"Tracking_Protection" + DOCS_GA_PARAMS;
|
|
const PREF = "privacy.trackingprotection.enabled";
|
|
|
|
const {UrlClassifierTestUtils} = Cu.import("resource://testing-common/UrlClassifierTestUtils.jsm", {});
|
|
|
|
registerCleanupFunction(function () {
|
|
Services.prefs.clearUserPref(PREF);
|
|
UrlClassifierTestUtils.cleanupTestTrackers();
|
|
});
|
|
|
|
add_task(function* testMessagesAppear() {
|
|
yield UrlClassifierTestUtils.addTestTrackers();
|
|
Services.prefs.setBoolPref(PREF, true);
|
|
|
|
let { browser } = yield loadTab(TEST_URI);
|
|
|
|
let hud = yield openConsole();
|
|
|
|
let results = yield waitForMessages({
|
|
webconsole: hud,
|
|
messages: [
|
|
{
|
|
name: "Was blocked because tracking protection is enabled",
|
|
text: "The resource at \u201chttp://tracking.example.com/\u201d was " +
|
|
"blocked because tracking protection is enabled",
|
|
category: CATEGORY_SECURITY,
|
|
severity: SEVERITY_WARNING,
|
|
objects: true,
|
|
},
|
|
],
|
|
});
|
|
|
|
yield testClickOpenNewTab(hud, results[0]);
|
|
});
|
|
|
|
function testClickOpenNewTab(hud, match) {
|
|
let warningNode = match.clickableElements[0];
|
|
ok(warningNode, "link element");
|
|
ok(warningNode.classList.contains("learn-more-link"), "link class name");
|
|
return simulateMessageLinkClick(warningNode, LEARN_MORE_URI);
|
|
}
|