summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_bug534804.html
blob: 0b60e6d89cfb46d0832002c5529e86deb4bf39cd (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=534804
-->
<head>
  <title>Test for Bug 534804</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <style type="text/css" id="styleone">  </style>
  <style type="text/css" id="styletwo">  </style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=534804">Mozilla Bug 534804</a>
<p id="display"></p>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 534804 **/

var styleone = document.getElementById("styleone");
var styletwo = document.getElementById("styletwo");
var display = document.getElementById("display");

run1();
styletwo.firstChild.data = "#e > span:nth-child(2n+1) { color: green }";
run1();
styletwo.firstChild.data = "#e > span:first-child { color: green }";
run1();
styletwo.firstChild.data = "#e > span:nth-last-child(2n+1) { color: green }";
run1();
styletwo.firstChild.data = "#e > span:last-child { color: green }";
run1();

function run1()
{
  function identity(bool)      { return bool; }
  function inverse(bool)       { return !bool; }
  function always_false(bool)  { return false; }
  run2("#e:empty + span", identity, always_false);
  run2("#e:empty ~ span", identity, identity);
  run2("#e:not(:empty) + span", inverse, always_false);
  run2("#e:not(:empty) ~ span", inverse, inverse);
}

function run2(sel, next_sibling_rule, later_sibling_rule)
{
  styleone.firstChild.data = sel + " { text-decoration: underline }";

  // Rebuild the subtree every time.
  var span1 = document.createElement("span");
  span1.id = "e";
  var span2 = document.createElement("span");
  var span3 = document.createElement("span");
  display.appendChild(span1);
  display.appendChild(span2);
  display.appendChild(span3);

  function td(e) { return getComputedStyle(e, "").textDecorationLine; }

  function check(desc, isempty) {
    is(td(span2), next_sibling_rule(isempty) ? "underline" : "none",
       "match of next sibling in state " + desc);
    is(td(span3), later_sibling_rule(isempty) ? "underline" : "none",
       "match of next sibling in state " + desc);
  }

  check("initially empty", true);
  var kid = document.createElement("span");
  span1.appendChild(kid);
  check("after append", false);
  span1.removeChild(kid);
  check("after remove", true);
  span1.appendChild(document.createTextNode(""));
  span1.appendChild(document.createComment("a comment"));
  span1.appendChild(document.createTextNode(""));
  check("after append of insignificant children", true);
  span1.insertBefore(kid, span1.childNodes[1]);
  check("after insert", false);

  display.removeChild(span1);
  display.removeChild(span2);
  display.removeChild(span3);
}

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