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

"use strict";

// Test that the rule and computed view refreshes when they are active.

const TEST_URI = `
  <div id="one" style="color:red;">one</div>
  <div id="two" style="color:blue;">two</div>
`;

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

  await selectNode("#one", inspector);

  is(
    getRuleViewPropertyValue(view, "element", "color"),
    "red",
    "The rule-view shows the properties for test node one"
  );

  info("Switching to the computed-view");
  const onComputedViewReady = inspector.once("computed-view-refreshed");
  selectComputedView(inspector);
  await onComputedViewReady;
  const cView = inspector.getPanel("computedview").computedView;

  is(
    getComputedViewPropertyValue(cView, "color"),
    "rgb(255, 0, 0)",
    "The computed-view shows the properties for test node one"
  );

  info("Selecting test node two");
  await selectNode("#two", inspector);

  is(
    getComputedViewPropertyValue(cView, "color"),
    "rgb(0, 0, 255)",
    "The computed-view shows the properties for test node two"
  );
  is(
    getRuleViewPropertyValue(view, "element", "color"),
    "blue",
    "The rule-view shows the properties for test node two"
  );
});