summaryrefslogtreecommitdiffstats
path: root/docshell/test/chrome/bug662200_window.xul
blob: a73e2d2963b0882b6e022af32e33c9a90540ff6d (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>

<window id="303267Test"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        width="600"
        height="600"
        onload="setTimeout(nextTest,0);"
        title="bug 662200 test">

  <script type="application/javascript"
  src="docshell_helpers.js">
  </script>
  <script type="application/javascript" src= "chrome://mochikit/content/chrome-harness.js" />
  <script type="application/javascript"><![CDATA[
  
    // Define the generator-iterator for the tests.
    var tests = testIterator();

    ////
    // Execute the next test in the generator function.
    //
    function nextTest() {
      tests.next();
    }

    ////
    // Generator function for test steps for bug 662200:  
    // Description goes here.
    //
    function testIterator()
    {
      // Load the first test page
      var navData = {
        uri: getHttpUrl("662200a.html"),
        eventsToListenFor: ["pageshow"],
        expectedEvents: [ {type: "pageshow", title: "A"} ],
        onNavComplete: nextTest
      };
      doPageNavigation(navData);
      yield undefined;
      
      // Load the second test page.
      navData = {
        eventsToListenFor: ["pageshow", "pagehide"],
        expectedEvents: [ {type: "pagehide", 
                           title: "A"},
                          {type: "pageshow", 
                           title: "B"} ],
        onNavComplete: nextTest
      }
      waitForPageEvents(navData);
      var link = TestWindow.getDocument().getElementById("link");
      var event = TestWindow.getDocument().createEvent("MouseEvents");
      event.initMouseEvent("click", true, true, TestWindow.getWindow(),
                           0, 0, 0, 0, 0, false, false, false, false, 0, null);
      link.dispatchEvent(event);
      yield undefined;

      // Load the third test page.
      navData = {
        eventsToListenFor: ["pageshow", "pagehide"],
        expectedEvents: [ {type: "pagehide", 
                           title: "B"},
                          {type: "pageshow", 
                           title: "C"} ],
        onNavComplete: nextTest
      };
      waitForPageEvents(navData);
      var link = TestWindow.getDocument().getElementById("link");
      var event = TestWindow.getDocument().createEvent("MouseEvents");
      event.initMouseEvent("click", true, true, TestWindow.getWindow(),
                           0, 0, 0, 0, 0, false, false, false, false, 0, null);
      link.dispatchEvent(event);
      yield undefined;
      
      // Go back.
      navData = {
        back: true,
        eventsToListenFor: ["pageshow", "pagehide"],
        expectedEvents: [ {type: "pagehide", 
                           title: "C"},
                          {type: "pageshow", 
                           title: "B"} ],
        onNavComplete: nextTest
      };
      doPageNavigation(navData);
      yield undefined;

      var Ci = Components.interfaces;
      var docshell = TestWindow.getWindow()
                               .QueryInterface(Ci.nsIInterfaceRequestor)
                               .getInterface(Ci.nsIWebNavigation)
                               .QueryInterface(Ci.nsIDocShell);
      var shistory = docshell.QueryInterface(Ci.nsIInterfaceRequestor)
                             .getInterface(Ci.nsISHistory)
                             .QueryInterface(Ci.nsIWebNavigation);

      // Reload.
      navData = {
        eventsToListenFor: ["pageshow", "pagehide"],
        expectedEvents: [ {type: "pagehide", 
                           title: "B"},
                          {type: "pageshow", 
                           title: "B"} ],
        onNavComplete: nextTest
      };
      // Asking the docshell harness to reload for us will call reload on
      // nsDocShell which has different behavior than the reload on nsSHistory
      // so we call reload explicitly here
      waitForPageEvents(navData);
      shistory.reload(0);
      yield undefined;

      // After this sequence of events, we should be able to go back and forward
      is(TestWindow.getBrowser().canGoBack, true, "Should be able to go back!");
      is(TestWindow.getBrowser().canGoForward, true, "Should be able to go forward!");
      is(shistory.requestedIndex, -1, "Requested index should be cleared!");

      // Tell the framework the test is finished.  Include the final 'yield' 
      // statement to prevent a StopIteration exception from being thrown.
      finish();
      yield undefined;
    }
    
  ]]></script>

  <browser type="content-primary" flex="1" id="content" src="about:blank"/>
</window>