summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/webcomponents/test_bug1017896.html
blob: 53562e9251ad71f28af19063cafc05418d160738 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1017896
-->
<head>
  <title>Test template element in stale document.</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=1017896">Bug 1017896</a>
<div id="container"></div>
<script>

SimpleTest.waitForExplicitFinish();

var frame = document.createElement("iframe");
document.getElementById("container").appendChild(frame);

var staleFrameDoc = frame.contentDocument;

setTimeout(function() {
  var v = staleFrameDoc.createElement("div");
  v.innerHTML = "<template>Content</template>";
  is(v.firstChild.content.childNodes.length, 1, "Template should have one child in template content.");
  SimpleTest.finish();
}, 0);

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