summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_user-agent-styles-uneditable.js
blob: 07a2b6abb8d2eed90428d7b2903d4ad8d4b1e953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Check that user agent styles are never editable via
// the UI

const TEST_URI = `
  <blockquote type=cite>
   <pre _moz_quote=true>
     inspect <a href='foo' style='color:orange'>user agent</a> styles
   </pre>
  </blockquote>
`;

var PREF_UA_STYLES = "devtools.inspector.showUserAgentStyles";

add_task(async function () {
  info("Starting the test with the pref set to true before toolbox is opened");
  Services.prefs.setBoolPref(PREF_UA_STYLES, true);

  await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
  const { inspector, view } = await openRuleView();

  await userAgentStylesUneditable(inspector, view);

  info("Resetting " + PREF_UA_STYLES);
  Services.prefs.clearUserPref(PREF_UA_STYLES);
});

async function userAgentStylesUneditable(inspector, view) {
  info("Making sure that UI is not editable for user agent styles");

  await selectNode("a", inspector);
  const uaRules = view._elementStyle.rules.filter(
    rule => !rule.editor.isEditable
  );

  for (const rule of uaRules) {
    ok(
      rule.editor.element.hasAttribute("uneditable"),
      "UA rules have uneditable attribute"
    );

    const firstProp = rule.textProps.filter(p => !p.invisible)[0];

    ok(!firstProp.editor.nameSpan._editable, "nameSpan is not editable");
    ok(!firstProp.editor.valueSpan._editable, "valueSpan is not editable");
    ok(!rule.editor.closeBrace._editable, "closeBrace is not editable");

    const colorswatch = rule.editor.element.querySelector(
      ".ruleview-colorswatch"
    );
    if (colorswatch) {
      ok(
        !view.tooltips.getTooltip("colorPicker").swatches.has(colorswatch),
        "The swatch is not editable"
      );
    }
  }
}