summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_bug229915.html
blob: 0a23d8b799c5b9605029e972f6b59df3276862ae (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=229915
-->
<head>
  <title>Test for Bug 229915</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <style type="text/css">

  p { color: black; background: transparent; }
  p.prev + p { color: green; }
  p.prev ~ p { background: white; }

  </style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=229915">Mozilla Bug 229915</a>
<div id="display">

<div>
  <p id="toinsertbefore">After testing, this should turn green.</p>
</div>

<div>
  <p id="toreplace">To be replaced.</p>
  <p id="replacecolor">After testing, this should turn green.</p>
</div>

<div>
  <p class="prev">Previous paragraph.</p>
  <p id="toremove">To be removed.</p>
  <p id="removecolor">After testing, this should turn green.</p>
</div>

</div>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 229915 **/

const GREEN = "rgb(0, 128, 0)";
const BLACK = "rgb(0, 0, 0)";
const TRANSPARENT = "rgba(0, 0, 0, 0)";
const WHITE = "rgb(255, 255, 255)";

function make_prev() {
  var result = document.createElement("p");
  result.setAttribute("class", "prev");
  var t = document.createTextNode("Dynamically created previous paragraph.");
  result.appendChild(t);
  return result;
}

function color(id) {
  return getComputedStyle(document.getElementById(id), "").color;
}
function bg(id) {
  return getComputedStyle(document.getElementById(id), "").backgroundColor;
}

var node;

// test insert
is(color("toinsertbefore"), BLACK, "initial state (insertion test)");
is(bg("toinsertbefore"), TRANSPARENT, "initial state (insertion test)");
node = document.getElementById("toinsertbefore");
node.parentNode.insertBefore(make_prev(), node);
is(color("toinsertbefore"), GREEN, "inserting should turn node green");
is(bg("toinsertbefore"), WHITE, "inserting should turn background white");

// test replace
is(color("replacecolor"), BLACK, "initial state (replacement test)");
is(bg("replacecolor"), TRANSPARENT, "initial state (replacement test)");
node = document.getElementById("toreplace");
node.parentNode.replaceChild(make_prev(), node);
is(color("replacecolor"), GREEN, "replacing should turn node green");
is(bg("replacecolor"), WHITE, "replacing should turn background white");

// test remove
is(color("removecolor"), BLACK, "initial state (removal test)");
is(bg("removecolor"), WHITE, "initial state (removal test; no change)");
node = document.getElementById("toremove");
node.remove();
is(color("removecolor"), GREEN, "removing should turn node green");
is(bg("removecolor"), WHITE, "removing should leave background");

</script>
</pre>
</body>
</html>