mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
82 lines
2.3 KiB
JavaScript
82 lines
2.3 KiB
JavaScript
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*
|
|
* Contributor(s):
|
|
* Tanvi Vyas <tanvi@mozilla.com>
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
// Tests that the Web Console Mixed Content messages are displayed
|
|
|
|
const TEST_HTTPS_URI = "https://example.com/browser/browser/devtools/webconsole/test/test-bug-737873-mixedcontent.html";
|
|
|
|
function test() {
|
|
addTab("data:text/html,Web Console basic network logging test");
|
|
browser.addEventListener("load", onLoad, true);
|
|
}
|
|
|
|
function onLoad(aEvent) {
|
|
browser.removeEventListener("load", onLoad, true);
|
|
openConsole(null, testMixedContent);
|
|
}
|
|
|
|
function testMixedContent(hud) {
|
|
content.location = TEST_HTTPS_URI;
|
|
var aOutputNode = hud.outputNode;
|
|
|
|
waitForSuccess(
|
|
{
|
|
name: "mixed content warning displayed successfully",
|
|
validatorFn: function() {
|
|
return ( aOutputNode.querySelector(".webconsole-mixed-content") );
|
|
},
|
|
|
|
successFn: function() {
|
|
|
|
//tests on the urlnode
|
|
let node = aOutputNode.querySelector(".webconsole-mixed-content");
|
|
ok(testSeverity(node), "Severity type is SEVERITY_WARNING.");
|
|
|
|
//tests on the warningNode
|
|
let warningNode = aOutputNode.querySelector(".webconsole-mixed-content-link");
|
|
is(warningNode.value, "[Mixed Content]", "Message text is accurate." );
|
|
testClickOpenNewTab(warningNode);
|
|
|
|
finishTest();
|
|
},
|
|
|
|
failureFn: finishTest,
|
|
}
|
|
);
|
|
|
|
}
|
|
|
|
function testSeverity(node) {
|
|
let linkNode = node.parentNode;
|
|
let msgNode = linkNode.parentNode;
|
|
let bodyNode = msgNode.parentNode;
|
|
let finalNode = bodyNode.parentNode;
|
|
|
|
return finalNode.classList.contains("webconsole-msg-warn");
|
|
}
|
|
|
|
function testClickOpenNewTab(warningNode) {
|
|
/* Invoke the click event and check if a new tab would open to the correct page */
|
|
let linkOpened = false;
|
|
let oldOpenUILinkIn = window.openUILinkIn;
|
|
|
|
window.openUILinkIn = function(aLink) {
|
|
if (aLink == "https://developer.mozilla.org/en/Security/MixedContent");
|
|
linkOpened = true;
|
|
}
|
|
|
|
EventUtils.synthesizeMouse(warningNode, 2, 2, {},
|
|
warningNode.ownerDocument.defaultView);
|
|
|
|
ok(linkOpened, "Clicking the Mixed Content Warning node opens the desired page");
|
|
|
|
window.openUILinkIn = oldOpenUILinkIn;
|
|
}
|