summaryrefslogtreecommitdiffstats
path: root/layout/inspector/tests/test_bug609549.xhtml
blob: d7d115847251bd5a3a6074283ac42249f825284d (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
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=609549
-->
<head>
  <title>Test for Bug 609549</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>

  <bindings xmlns="http://www.mozilla.org/xbl">
    <binding id="testBinding">
      <!-- No linebreaks since this is html and whitespace is preserved. -->
      <content><div anonid="box-A">x</div><div anonid="box-B"><children includes="span"/></div><div anonid="box-C">x</div><children/></content>
    </binding>
  </bindings>
</head>

<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=609549">Mozilla Bug 609549</a>
<div id="bound" style="-moz-binding: url(#testBinding);"><p id="p">lorem ipsum dolor sit amet</p><span id="sandwiched">sandwiched</span></div>

<div id="content" style="display: none">
  
</div>
<pre id="test">
<script type="application/javascript">
<![CDATA[

/** Test for Bug 609549 **/
SimpleTest.waitForExplicitFinish();

addLoadEvent(function() {
  var domUtils = SpecialPowers.Cc["@mozilla.org/inspector/dom-utils;1"].
                   getService(SpecialPowers.Ci.inIDOMUtils);
  ok("getChildrenForNode" in domUtils, "domUtils has no getChildrenForNode");
  var withoutAnons = SpecialPowers.unwrap(domUtils.getChildrenForNode($("bound"), false));

  is(withoutAnons.length, $("bound").childNodes.length,
     "withoutAnons should be the same length as childNodes");
  is(withoutAnons[0], $("p"), "didn't get paragraph - without anons");
  is(withoutAnons[1], $("sandwiched"),
     "didn't get sandwiched span - without anons");

  var withAnons = domUtils.getChildrenForNode($("bound"), true);

  is(withAnons.length, 4, "bad withAnons.length");
  is(withAnons[0].getAttribute("anonid"), "box-A",
     "didn't get anonymous box-A");
  is(withAnons[1].getAttribute("anonid"), "box-B",
     "didn't get anonymous box-B");
  is(withAnons[2].getAttribute("anonid"), "box-C",
     "didn't get anonymous box-C");
  is(withAnons[3].id, "p", "didn't get paragraph - with anons");

  var bKids = domUtils.getChildrenForNode(withAnons[1], true);
  is(bKids.length, 1, "bKids.length is bad");
  is(SpecialPowers.unwrap(bKids[0]), $("sandwiched"),
     "didn't get sandwiched span inserted into box-B");

  SimpleTest.finish();
});

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