summaryrefslogtreecommitdiffstats
path: root/dom/xbl/test/test_bug378866.xhtml
blob: 5a5b9a09a7deebc8fdb1e5277d1bb4bf1ab253cb (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
<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=378866
-->
<head>
  <title>Test for Bug 378866</title>
  <script type="text/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" xmlns:html="http://www.w3.org/1999/xhtml">
    <binding id="b1">
      <content><html:span><html:span>
        <children/>
      </html:span></html:span></content>
  </binding>
</bindings>

</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=378866">Mozilla Bug 378866</a>
<p id="display"></p>
<div id="content">
  <span id="grandparent" style="-moz-binding: url(#b1);">
    <span id="parent">
      <span id="child"/>
    </span>
  </span>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
<![CDATA[

/** Test for Bug 378866 **/

function runTest() {
  var anon = SpecialPowers.wrap(document).getAnonymousNodes(document.getElementById('grandparent'));
  var child = SpecialPowers.wrap(document).getElementById('child');
  var insertionPoint = anon[0].childNodes[0];
  insertionPoint.parentNode.removeChild(insertionPoint);
  child.appendChild(insertionPoint);

  var e = document.createEvent("Event");
  e.initEvent("foo", true, true);
  child.dispatchEvent(e);
  ok(true, "Moving insertion point shouldn't cause problems in event dispatching");
  addLoadEvent(SimpleTest.finish);
}

SimpleTest.waitForExplicitFinish();
addLoadEvent(runTest);

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