mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 16:30:29 +00:00
74 lines
2.3 KiB
JavaScript
74 lines
2.3 KiB
JavaScript
/* 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";
|
|
|
|
// Check stylesheets on HMTL and XUL document
|
|
|
|
// FIXME: this test opens the devtools for nothing, it should be changed into a
|
|
// devtools/server/tests/mochitest/test_css-logic-...something...html
|
|
// test
|
|
|
|
const TEST_URI_HTML = TEST_URL_ROOT + "doc_content_stylesheet.html";
|
|
const TEST_URI_XUL = TEST_URL_ROOT + "doc_content_stylesheet.xul";
|
|
const XUL_URI = Cc["@mozilla.org/network/io-service;1"]
|
|
.getService(Ci.nsIIOService)
|
|
.newURI(TEST_URI_XUL, null, null);
|
|
var ssm = Components.classes["@mozilla.org/scriptsecuritymanager;1"]
|
|
.getService(Ci.nsIScriptSecurityManager);
|
|
const XUL_PRINCIPAL = ssm.createCodebasePrincipal(XUL_URI, {});
|
|
|
|
add_task(function*() {
|
|
info("Checking stylesheets on HTML document");
|
|
yield addTab(TEST_URI_HTML);
|
|
let target = getNode("#target");
|
|
|
|
let {inspector} = yield openRuleView();
|
|
yield selectNode("#target", inspector);
|
|
|
|
info("Checking stylesheets");
|
|
yield checkSheets(target);
|
|
|
|
info("Checking stylesheets on XUL document");
|
|
info("Allowing XUL content");
|
|
allowXUL();
|
|
yield addTab(TEST_URI_XUL);
|
|
|
|
({inspector} = yield openRuleView());
|
|
target = getNode("#target");
|
|
yield selectNode("#target", inspector);
|
|
|
|
yield checkSheets(target);
|
|
info("Disallowing XUL content");
|
|
disallowXUL();
|
|
});
|
|
|
|
function allowXUL() {
|
|
Cc["@mozilla.org/permissionmanager;1"].getService(Ci.nsIPermissionManager)
|
|
.addFromPrincipal(XUL_PRINCIPAL, "allowXULXBL",
|
|
Ci.nsIPermissionManager.ALLOW_ACTION);
|
|
}
|
|
|
|
function disallowXUL() {
|
|
Cc["@mozilla.org/permissionmanager;1"].getService(Ci.nsIPermissionManager)
|
|
.addFromPrincipal(XUL_PRINCIPAL, "allowXULXBL",
|
|
Ci.nsIPermissionManager.DENY_ACTION);
|
|
}
|
|
|
|
function* checkSheets(target) {
|
|
let sheets = yield executeInContent("Test:GetStyleSheetsInfoForNode", {},
|
|
{target});
|
|
|
|
for (let sheet of sheets) {
|
|
if (!sheet.href ||
|
|
/doc_content_stylesheet_/.test(sheet.href)) {
|
|
ok(sheet.isContentSheet,
|
|
sheet.href + " identified as content stylesheet");
|
|
} else {
|
|
ok(!sheet.isContentSheet,
|
|
sheet.href + " identified as non-content stylesheet");
|
|
}
|
|
}
|
|
}
|