summaryrefslogtreecommitdiffstats
path: root/docshell/test/test_bug529119-1.html
blob: 573885dc0f01aac71b0559a69650bed97a251f56 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE HTML>
<html>
<head>
<title>Test bug 529119</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>        
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />

<script class="testbody" type="text/javascript">

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

var workingURL = "http://mochi.test:8888/tests/docshell/test/bug529119-window.html";
var faultyURL = "http://some-nonexistent-domain-27489274c892748217cn2384.com/";

var w = null;
var phase = 0;
var gotWrongPageOnTryAgainClick = false;

function pollForPage(f, w)
{
  // Start with polling after a delay, we might mistakenly take the current page
  // as an expected one.
  window.setTimeout(function() {
    var iterationsLeft = 200;
    var int = window.setInterval(function() {
      iterationsLeft--;

      var haveErrorPage = false;
      try {
        var title = w.document.title;
      }
      catch (ex) {
        haveErrorPage = true;
      }
  
      if (iterationsLeft == 0 || haveErrorPage) {
        window.clearInterval(int);
        f(iterationsLeft > 0);
      }
    }, 100);
  }, 1000);
}

function windowLoaded()
{
  switch (phase)
  {
    case 0:
      /* 2. We have succeededfully loaded a page, now go to a faulty URL */
      window.setTimeout(function() {
        w.location.href = faultyURL;
      }, 0);
    
      phase = 1;

      pollForPage(function(succeeded) {
        ok(succeeded, "Waiting for error page succeeded");
        
        /* 3. now, while we are on the error page, try to reload it, actually 
           click the "Try Again" button */
        SpecialPowers.wrap(w).location.reload();

        pollForPage(function(succeeded) {
          ok(succeeded, "Waiting for error page succeeded");
          
          /* 4-finish, check we are still on the error page */
          is(SpecialPowers.wrap(w).location.href, faultyURL, "Is on an error page");
          isnot(SpecialPowers.wrap(w).location.href, workingURL, "Is not on the previous page");
          is(gotWrongPageOnTryAgainClick, false, 
            "Must not get www.example.com page on reload of an error page");
          w.close();
          SimpleTest.finish();
        }, w);
      }, w);
      break;
      
    case 1:
      /* 4-check, we must not get here! */
      gotWrongPageOnTryAgainClick = true;
      break;
  }             
}

function startTest()
{
  /* 1. load a URL that leads to an error page */
  w = window.open(workingURL);
}

</script>
</head>
<body onload="startTest();">
</body>
</html>