summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_inherited-properties_04.js
blob: 2416b01910804b2e1f32d2ddbb58f2ff881f75d8 (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
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Tests that different inherited properties sections are created for rules
// inherited from several elements of the same type.

const TEST_URI = `
  <div style="cursor:pointer">
    A
    <div style="cursor:pointer">
      B<a>Cursor</a>
    </div>
  </div>
`;

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

function elementStyleInherit(inspector, view) {
  const gutters = view.element.querySelectorAll(".ruleview-header");
  is(gutters.length, 2, "Gutters should contains 2 sections");
  ok(gutters[0].textContent, "Inherited from div");
  ok(gutters[1].textContent, "Inherited from div");
}