mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 01:48:55 +00:00
68 lines
2.3 KiB
JavaScript
68 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
|
|
// toolkit/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);
|
|
const XUL_PRINCIPAL = Components.classes["@mozilla.org/scriptsecuritymanager;1"]
|
|
.getService(Ci.nsIScriptSecurityManager)
|
|
.getNoAppCodebasePrincipal(XUL_URI);
|
|
|
|
add_task(function*() {
|
|
info("Checking stylesheets on HTML document");
|
|
yield addTab(TEST_URI_HTML);
|
|
let target = getNode("#target");
|
|
|
|
let {toolbox, inspector, view} = 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);
|
|
|
|
({toolbox, inspector, view} = 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");
|
|
}
|
|
}
|
|
}
|