summaryrefslogtreecommitdiffstats
path: root/dom/xbl/test/test_bug310107.html
blob: 17e642b974d0b7daaa7eb094120b8129696853a0 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=310107
-->
<head>
  <title>Test for Bug 310107</title>
  <script type="text/javascript" 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=310107">Mozilla Bug 310107</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 310107 **/
SimpleTest.waitForExplicitFinish();

var win = window.open("bug310107-resource.xhtml", "", "width=10, height=10");

function runTest() {
  window.el = win.document.getElementById("bar");
  window.doc = win.document;
  is(window.el.prop, 2, "Unexpected prop value at load");

  win.location = "data:text/html,<body onload='window.opener.loadDone()'>";
}

function loadDone() {
  is(window.el.prop, 2, "Prop still 2 because we're in bfcache");
  is(window.el, window.doc.getElementById("bar"),
     "document didn't get bfcached?");

  // Remove our node from the DOM
  window.el.parentNode.removeChild(window.el);

  is(window.el.prop, undefined, "Binding should have been detached");
  is(typeof(window.el.prop), "undefined", "Really undefined");

  win.close();

  SimpleTest.finish();
}


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