summaryrefslogtreecommitdiffstats
path: root/docshell/test/test_bug530396.html
blob: f9fb79b4b7e564228afd35e159e1a6056c5b7746 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=530396
-->
<head>
  <title>Test for Bug 530396</title>
  <script type="application/javascript" src="/MochiKit/packed.js"></script>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/EventUtils.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=530396">Mozilla Bug 530396</a>

<p>

<iframe id="testFrame" src="http://mochi.test:8888/tests/docshell/test/bug530396-subframe.html"></iframe>

<pre id="test">
<script class="testbody" type="text/javascript">

// NOTE: If we ever make subframes do bfcache stuff, this test will need to be
// modified accordingly!  It assumes that subframes do NOT get bfcached.
var onloadCount = 0;

var step = 0;

var gTestFrame = document.getElementById('testFrame');

SimpleTest.waitForExplicitFinish();
SimpleTest.requestFlakyTimeout("untriaged");
addLoadEvent(doNextStep);

function doNextStep() {
  ++step;
  switch (step) {
    case 1:
      is(onloadCount, 1, "Loaded initial page");
      sendMouseEvent({type: "click"}, "target2", gTestFrame.contentWindow);
      window.setTimeout(doNextStep, 1000);
      break;

    case 2:
      is(onloadCount, 1, "opener must be null");
      sendMouseEvent({type: "click"}, "target1", gTestFrame.contentWindow);
      break;

    case 3:
      is(onloadCount, 2, "don't send referrer with rel=referrer"); 
      SimpleTest.finish();
      break;
  }
}
</script>
</pre>
</html>