summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/mochitest/test_styles-computed.html
blob: c70adc8ebca989964b829b5b67ce5539fb0f14c0 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug </title>

  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
  <script type="application/javascript;version=1.8" src="inspector-helpers.js"></script>
  <script type="application/javascript;version=1.8">
const inspector = require("devtools/server/actors/inspector");

window.onload = function() {
  SimpleTest.waitForExplicitFinish();
  runNextTest();
}

var gWalker = null;
var gStyles = null;
var gClient = null;

addTest(function setup() {
  let url = document.getElementById("inspectorContent").href;
  attachURL(url, function(err, client, tab, doc) {
    gInspectee = doc;
    let {InspectorFront} = require("devtools/shared/fronts/inspector");
    let inspector = InspectorFront(client, tab);
    promiseDone(inspector.getWalker().then(walker => {
      ok(walker, "getWalker() should return an actor.");
      gClient = client;
      gWalker = walker;
      return inspector.getPageStyle();
    }).then(styles => {
      gStyles = styles;
    }).then(runNextTest));
  });
});

addTest(function testComputed() {
  let localNode = gInspectee.querySelector("#computed-test-node");
  let elementStyle = null;
  promiseDone(gWalker.querySelector(gWalker.rootNode, "#computed-test-node").then(node => {
    return gStyles.getComputed(node, {});
  }).then(computed => {
    // Test a smattering of properties that include some system-defined
    // props, some props that were defined in this node's stylesheet,
    // and some default props.
    is(computed["white-space"].value, "normal", "Default value should appear");
    is(computed["display"].value, "block", "System stylesheet item should appear");
    is(computed["cursor"].value, "crosshair", "Included stylesheet rule should appear");
    is(computed["color"].value, "rgb(255, 0, 0)", "Inherited style attribute should appear");
    is(computed["font-size"].value, "15px", "Inherited inline rule should appear");

    // We didn't request markMatched, so these shouldn't be set
    ok(!computed["cursor"].matched, "Didn't ask for matched, shouldn't get it");
    ok(!computed["color"].matched, "Didn't ask for matched, shouldn't get it");
    ok(!computed["font-size"].matched, "Didn't ask for matched, shouldn't get it");
  }).then(runNextTest));
});

addTest(function testComputedUserMatched() {
  let localNode = gInspectee.querySelector("#computed-test-node");
  let elementStyle = null;
  promiseDone(gWalker.querySelector(gWalker.rootNode, "#computed-test-node").then(node => {
    return gStyles.getComputed(node, { filter: "user", markMatched: true });
  }).then(computed => {
    ok(!computed["white-space"].matched, "Default style shouldn't match");
    ok(!computed["display"].matched, "Only user styles should match");
    ok(computed["cursor"].matched, "Asked for matched, should get it");
    ok(computed["color"].matched, "Asked for matched, should get it");
    ok(computed["font-size"].matched, "Asked for matched, should get it");
  }).then(runNextTest));
});

addTest(function testComputedSystemMatched() {
  let localNode = gInspectee.querySelector("#computed-test-node");
  let elementStyle = null;
  promiseDone(gWalker.querySelector(gWalker.rootNode, "#computed-test-node").then(node => {
    return gStyles.getComputed(node, { filter: "ua", markMatched: true });
  }).then(computed => {
    ok(!computed["white-space"].matched, "Default style shouldn't match");
    ok(computed["display"].matched, "System stylesheets should match");
    ok(computed["cursor"].matched, "Asked for matched, should get it");
    ok(computed["color"].matched, "Asked for matched, should get it");
    ok(computed["font-size"].matched, "Asked for matched, should get it");
  }).then(runNextTest));
});

addTest(function testComputedUserOnlyMatched() {
  let localNode = gInspectee.querySelector("#computed-test-node");
  let elementStyle = null;
  promiseDone(gWalker.querySelector(gWalker.rootNode, "#computed-test-node").then(node => {
    return gStyles.getComputed(node, { filter: "user", onlyMatched: true });
  }).then(computed => {
    ok(!("white-space" in computed), "Default style shouldn't exist");
    ok(!("display" in computed), "System stylesheets shouldn't exist");
    ok(("cursor" in computed), "User items should exist.");
    ok(("color" in computed), "User items should exist.");
    ok(("font-size" in computed), "User items should exist.");
  }).then(runNextTest));
});

addTest(function testComputedSystemOnlyMatched() {
  let localNode = gInspectee.querySelector("#computed-test-node");
  let elementStyle = null;
  promiseDone(gWalker.querySelector(gWalker.rootNode, "#computed-test-node").then(node => {
    return gStyles.getComputed(node, { filter: "ua", onlyMatched: true });
  }).then(computed => {
    ok(!("white-space" in computed), "Default style shouldn't exist");
    ok(("display" in computed), "System stylesheets should exist");
    ok(("cursor" in computed), "User items should exist.");
    ok(("color" in computed), "User items should exist.");
    ok(("font-size" in computed), "User items should exist.");
  }).then(runNextTest));
});

addTest(function cleanup() {
  delete gStyles;
  delete gWalker;
  delete gClient;
  runNextTest();
});

  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=">Mozilla Bug </a>
<a id="inspectorContent" target="_blank" href="inspector-styles-data.html">Test Document</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
</pre>
</body>
</html>