summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_shorthand-overridden-lists.js
blob: 2ad037d443624c878685e5b373f1406e198e87e4 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Tests that the rule view shorthand overridden list works correctly,
// can be shown and hidden correctly, and contain the right subproperties.

var TEST_URI = `
  <style type="text/css">
    div {
      margin: 0px 1px 2px 3px;
      top: 0px;
    }
    #testid {
        margin-left: 10px;
        margin-right: 10px;
    }
  </style>
  <div id="testid">Styled Node</div>
`;

add_task(async function () {
  await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
  const { inspector, view } = await openRuleView();
  await selectNode("#testid", inspector);
  await testComputedList(inspector, view);
});

function testComputedList(inspector, view) {
  const rule = getRuleViewRuleEditor(view, 2).rule;
  const propEditor = rule.textProps[0].editor;
  const expander = propEditor.expander;
  const overriddenItems = propEditor.shorthandOverridden.children;
  const propNames = ["margin-right", "margin-left"];

  ok(!expander.hasAttribute("open"), "margin computed list is closed.");
  ok(
    !propEditor.shorthandOverridden.hasAttribute("hidden"),
    "The shorthandOverridden list should be open."
  );

  is(
    overriddenItems.length,
    propNames.length,
    "There should be 2 overridden shorthand value."
  );
  for (let i = 0; i < propNames.length; i++) {
    const overriddenItem = overriddenItems[i].querySelector(
      ".ruleview-propertyname"
    );
    is(
      overriddenItem.textContent,
      propNames[i],
      "The overridden item #" + i + " should be " + propNames[i]
    );
  }

  info("Opening the computed list of margin property.");
  expander.click();
  ok(expander.hasAttribute("open"), "margin computed list is open.");
  ok(
    propEditor.shorthandOverridden.hasAttribute("hidden"),
    "The shorthandOverridden list should be hidden."
  );

  info("Closing the computed list of margin property.");
  expander.click();
  ok(!expander.hasAttribute("open"), "margin computed list is closed.");
  ok(
    !propEditor.shorthandOverridden.hasAttribute("hidden"),
    "The shorthandOverridden list should be open."
  );

  for (let i = 0; i < propNames.length; i++) {
    const overriddenItem = overriddenItems[i].querySelector(
      ".ruleview-propertyname"
    );
    is(
      overriddenItem.textContent,
      propNames[i],
      "The overridden item #" + i + " should still be " + propNames[i]
    );
  }
}