summaryrefslogtreecommitdiffstats
path: root/dom/bindings/test/test_blacklisted_prerendering_function.xul
blob: 02a76d88d975d32279da5eacd7d059c587dfcd3f (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
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        xmlns:html="http://www.w3.org/1999/xhtml"
        onload="runTest();">
  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>

<script class="testbody" type="application/javascript">
<![CDATA[

  SimpleTest.waitForExplicitFinish();

  function Listener(aBrowser, aPrerendered, aCallback) {
    this.init(aBrowser, aPrerendered, aCallback);
  }

  Listener.prototype = {
    init: function(aBrowser, aPrerendered, aCallback) {
      this.mBrowser = aBrowser;
      this.mPrerendered = aPrerendered;
      this.mCallback = aCallback;
    },
    QueryInterface: function(aIID) {
      if (aIID.equals(Components.interfaces.nsIWebProgressListener) ||
          aIID.equals(Components.interfaces.nsISupportsWeakReference) ||
          aIID.equals(Components.interfaces.nsISupports))
        return this;
      throw Components.results.NS_NOINTERFACE;
    },
    onStateChange : function(aWebProgress, aRequest, aStateFlags, aStatus) {
      if ((aStateFlags & Components.interfaces.nsIWebProgressListener.STATE_STOP) &&
          (aStateFlags & Components.interfaces.nsIWebProgressListener.STATE_IS_DOCUMENT)) {
        var doc = this.mBrowser.contentDocument;
        var stage = doc.getElementById("stage");
        if (this.mPrerendered) {
          is(stage.textContent, "before", "The blacklisted call should properly be intercepted in prerendering mode");
        } else {
          // In normal mode, we may or may not have run the timeout and/or the interval.
          switch (stage.textContent) {
          case "after":
          case "in timeout":
          case "in interval":
            ok(true, "The blacklisted call should work fine in normal mode");
            break;
          default:
            ok(false, "The blacklisted call should work fine in normal mode");
            break;
          }
        }
        progress.removeProgressListener(progressListener);

        // Set three timeouts to see if the interval triggered
        var self = this;
        function checkInterval() {
          var expected = self.mPrerendered ? "before" : "in interval";
          var desc = self.mPrerendered ? "No timer should be running" : "Timers should run as normal";
          is(stage.textContent, expected, desc);
          // Now, dispatch a key event to the window and see if the keydown handler runs
          synthesizeKey("a", {}, self.mBrowser.contentWindow);
          expected = self.mPrerendered ? "before" : "keydown";
          desc = self.mPrerendered ? "No event handler should be running" : "Event handlers should run as normal";
          is(stage.textContent, expected, desc);
          self.mCallback();
        }
        setTimeout(function() {
          setTimeout(function() {
            setTimeout(function() {
              checkInterval();
            }, 0);
          }, 0);
        }, 0);
      }
    },
    onProgressChange : function(aWebProgress, aRequest,
                                aCurSelfProgress, aMaxSelfProgress,
                                aCurTotalProgress, aMaxTotalProgress) {},
    onLocationChange : function(aWebProgress, aRequest, aLocation, aFlags) {},
    onStatusChange : function(aWebProgress, aRequest, aStatus, aMessage) {},
    onSecurityChange : function(aWebProgress, aRequest, aState) {},
    mBrowser: null,
    mPrerendered: false,
    mCallback: null
  };

  var progress, progressListener;

  function runTest() {
    testStep(false, "file_focuser.html", function() {
      testStep(true, "file_focuser.html", function() {
        testStep(false, "file_fullScreenPropertyAccessor.html", function() {
          testStep(true, "file_fullScreenPropertyAccessor.html", function() {
            SimpleTest.finish();
          });
        });
      });
    });
  }

  function testStep(aPrerendered, aFileName, aCallback) {
    var browser = document.getElementById(aPrerendered ? "prerendered" : "normal");;
    progressListener = new Listener(browser, aPrerendered, aCallback);
    var docShell = browser.docShell;
    progress = docShell.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
                       .getInterface(Components.interfaces.nsIWebProgress);
    progress.addProgressListener(progressListener,
                                 Components.interfaces.nsIWebProgress.NOTIFY_ALL);
    browser.loadURI("chrome://mochitests/content/chrome/dom/bindings/test/" + aFileName);
  }

]]>
</script>

<body  id="html_body" xmlns="http://www.w3.org/1999/xhtml">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1069719">Mozilla Bug 1069719</a>
<p id="display"></p>

<pre id="test">
</pre>
</body>
<browser prerendered="true" id="prerendered"/>
<browser id="normal"/>
</window>