summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug559526.html
blob: 3d2b01948c2d958afee63959f0f5cc8c4d58bcbb (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=559526
-->
<head>
  <title>Test for Bug 559526</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=559526">Mozilla Bug 559526</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<div id="nodes" style="display:none">
  <div id="child1"></div>
  <div id="child2"></div>

  <div id="child3"></div>
  <div id="child4"></div>
  <div id="child5"></div>
  <div id="child6"></div>
  <div id="child7"></div>
  <div id="child8"></div>
</div>
<script type="application/javascript">

/** Test for Bug 559526 **/

var it;
var recurse = false;
var testCount = 0;
function filter(node) {
  if (node.id == "child3" && ! recurse) {
    recurse = true;
    var ex = null;
    try {
      var foo = it.nextNode();
    } catch(e) {
      ex = e;
    }
    ++testCount;
    is(ex.name, "InvalidStateError", "Should have thrown an exception!");
    is(ex.code, DOMException.INVALID_STATE_ERR, "Should have thrown an exception!");
    recurse = false;
  }
  return NodeFilter.FILTER_ACCEPT;
}

(function testNodeIterator() {

  it = document.createNodeIterator(
    document.getElementById("nodes"),
    NodeFilter.SHOW_ELEMENT,
    filter
  );
  while (it.nextNode());
})();

(function testTreeWalker() {
  it = document.createTreeWalker(
    document.getElementById("nodes"),
    NodeFilter.SHOW_ELEMENT,
    filter
  );
  while(it.nextNode());

  it = document.createTreeWalker(
    document.getElementById("nodes"),
    NodeFilter.SHOW_ELEMENT,
    filter
  );
  it.firstChild();
  while(it.nextSibling());

  it = document.createTreeWalker(
    document.getElementById("nodes"),
    NodeFilter.SHOW_ELEMENT,
    filter
  );
  it.lastChild();
  while(it.previousSibling());
})();

is(testCount, 4, "Should have tests 3 filter calls!");

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