mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
138 lines
5.5 KiB
JavaScript
138 lines
5.5 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 that user agent styles are inspectable via rule view if
|
|
// it is preffed on.
|
|
|
|
let PREF_UA_STYLES = "devtools.inspector.showUserAgentStyles";
|
|
const { PrefObserver } = devtools.require("devtools/styleeditor/utils");
|
|
const TEST_URI = "data:text/html;charset=utf-8," +
|
|
"<blockquote type=cite>" +
|
|
" <pre _moz_quote=true>" +
|
|
" inspect <a href='foo' style='color:orange'>user agent</a> styles" +
|
|
" </pre>" +
|
|
"</blockquote>";
|
|
|
|
let test = asyncTest(function*() {
|
|
info ("Starting the test with the pref set to true before toolbox is opened");
|
|
yield setUserAgentStylesPref(true);
|
|
|
|
info ("Opening the testcase and toolbox")
|
|
yield addTab(TEST_URI);
|
|
let {toolbox, inspector, view} = yield openRuleView();
|
|
|
|
info ("Making sure that UA styles are visible on initial load")
|
|
yield userAgentStylesVisible(inspector, view);
|
|
|
|
info ("Making sure that setting the pref to false hides UA styles");
|
|
yield setUserAgentStylesPref(false);
|
|
yield userAgentStylesNotVisible(inspector, view);
|
|
|
|
info ("Making sure that resetting the pref to true shows UA styles again");
|
|
yield setUserAgentStylesPref(true);
|
|
yield userAgentStylesVisible(inspector, view);
|
|
|
|
info("Resetting " + PREF_UA_STYLES);
|
|
Services.prefs.clearUserPref(PREF_UA_STYLES);
|
|
});
|
|
|
|
function* setUserAgentStylesPref(val) {
|
|
info("Setting the pref " + PREF_UA_STYLES + " to: " + val);
|
|
|
|
// Reset the pref and wait for PrefObserver to callback so UI
|
|
// has a chance to get updated.
|
|
let oncePrefChanged = promise.defer();
|
|
let prefObserver = new PrefObserver("devtools.");
|
|
prefObserver.on(PREF_UA_STYLES, oncePrefChanged.resolve);
|
|
Services.prefs.setBoolPref(PREF_UA_STYLES, val);
|
|
yield oncePrefChanged.promise;
|
|
prefObserver.off(PREF_UA_STYLES, oncePrefChanged.resolve);
|
|
}
|
|
|
|
function* userAgentStylesVisible(inspector, view) {
|
|
info ("Making sure that user agent styles are currently visible");
|
|
|
|
yield selectNode("blockquote", inspector);
|
|
yield compareAppliedStylesWithUI(inspector, view, "ua");
|
|
|
|
let userRules = view._elementStyle.rules.filter(rule=>rule.editor.isEditable);
|
|
let uaRules = view._elementStyle.rules.filter(rule=>!rule.editor.isEditable);
|
|
is (userRules.length, 1, "Correct number of user rules");
|
|
ok (uaRules.length > 0, "Has UA rules");
|
|
|
|
yield selectNode("pre", inspector);
|
|
yield compareAppliedStylesWithUI(inspector, view, "ua");
|
|
|
|
userRules = view._elementStyle.rules.filter(rule=>rule.editor.isEditable);
|
|
uaRules = view._elementStyle.rules.filter(rule=>!rule.editor.isEditable);
|
|
is (userRules.length, 1, "Correct number of user rules");
|
|
ok (uaRules.length > 0, "Has UA rules");
|
|
|
|
yield selectNode("a", inspector);
|
|
yield compareAppliedStylesWithUI(inspector, view, "ua");
|
|
|
|
userRules = view._elementStyle.rules.filter(rule=>rule.editor.isEditable);
|
|
uaRules = view._elementStyle.rules.filter(rule=>!rule.editor.isEditable);
|
|
is (userRules.length, 1, "Correct number of user rules");
|
|
|
|
ok (userRules.some(rule=> rule.matchedSelectors.length === 0),
|
|
"There is an inline style for element in user styles");
|
|
|
|
ok (uaRules.some(rule=> rule.matchedSelectors.indexOf(":-moz-any-link")),
|
|
"There is a rule for :-moz-any-link");
|
|
ok (uaRules.some(rule=> rule.matchedSelectors.indexOf("*|*:link")),
|
|
"There is a rule for *|*:link");
|
|
ok (!uaRules.some(rule=> rule.matchedSelectors.length === 0),
|
|
"No inline styles for ua styles");
|
|
}
|
|
|
|
function* userAgentStylesNotVisible(inspector, view) {
|
|
info ("Making sure that user agent styles are not currently visible");
|
|
|
|
yield selectNode("blockquote", inspector);
|
|
yield compareAppliedStylesWithUI(inspector, view);
|
|
|
|
let userRules = view._elementStyle.rules.filter(rule=>rule.editor.isEditable);
|
|
let uaRules = view._elementStyle.rules.filter(rule=>!rule.editor.isEditable);
|
|
is (userRules.length, 1, "Correct number of user rules");
|
|
is (uaRules.length, 0, "No UA rules");
|
|
|
|
yield selectNode("pre", inspector);
|
|
yield compareAppliedStylesWithUI(inspector, view);
|
|
|
|
userRules = view._elementStyle.rules.filter(rule=>rule.editor.isEditable);
|
|
uaRules = view._elementStyle.rules.filter(rule=>!rule.editor.isEditable);
|
|
is (userRules.length, 1, "Correct number of user rules");
|
|
is (uaRules.length, 0, "No UA rules");
|
|
|
|
yield selectNode("a", inspector);
|
|
yield compareAppliedStylesWithUI(inspector, view);
|
|
|
|
userRules = view._elementStyle.rules.filter(rule=>rule.editor.isEditable);
|
|
uaRules = view._elementStyle.rules.filter(rule=>!rule.editor.isEditable);
|
|
is (userRules.length, 1, "Correct number of user rules");
|
|
is (uaRules.length, 0, "No UA rules");
|
|
}
|
|
|
|
function* compareAppliedStylesWithUI(inspector, view, filter) {
|
|
info ("Making sure that UI is consistent with pageStyle.getApplied");
|
|
|
|
let entries = yield inspector.pageStyle.getApplied(inspector.selection.nodeFront, {
|
|
inherited: true,
|
|
matchedSelectors: true,
|
|
filter: filter
|
|
});
|
|
|
|
let elementStyle = view._elementStyle;
|
|
is(elementStyle.rules.length, entries.length, "Should have correct number of rules (" + entries.length + ")");
|
|
|
|
entries.forEach((entry, i) => {
|
|
let elementStyleRule = elementStyle.rules[i];
|
|
is (elementStyleRule.inherited, entry.inherited, "Same inherited (" +entry.inherited+ ")" );
|
|
is (elementStyleRule.isSystem, entry.isSystem, "Same isSystem (" +entry.isSystem+ ")");
|
|
is (elementStyleRule.editor.isEditable, !entry.isSystem, "Editor isEditable opposite of UA (" +entry.isSystem+ ")");
|
|
});
|
|
}
|