summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/treeupdate/test_bug895082.html
blob: 8332c5206eff0020a1b55de535b7d10edff9b063 (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
<!DOCTYPE html>
<html>
<head>
<title>Replace body test</title>
  <link rel="stylesheet" type="text/css"
        href="chrome://mochikit/content/tests/SimpleTest/test.css" />

  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>

  <script type="application/javascript"
          src="../common.js"></script>
  <script type="application/javascript"
          src="../role.js"></script>
  <script type="application/javascript"
          src="../events.js"></script>

  <script type="application/javascript">
function doTest() {
  var y = document.getElementById("y");
  var oldBody = document.body;
  var newBody = document.createElement("body");
  document.documentElement.insertBefore(newBody, oldBody);
  setTimeout(function() {
    document.documentElement.removeChild(oldBody);
    newBody.appendChild(y);
    ok(true, "we didn't assert");
    SimpleTest.finish();
  }, 0);
}

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);
  </script>
</head>
<body>

  <a target="_blank"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=895082"
     title="Bug 895082 - replacing body element asserts">
    Bug 895082</a>
  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test">
  </pre>

<div><div id="y"></div></div>

</body>
</html>