Bug 882543 - Register the MSG thread for in the profiler. r=benwa
[gecko.git] / build / bloatcycle.html
blobdd605e4591f04bfe74dab8c882fb6140b7372579
1 <script>
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 /*
7 From mozilla/toolkit/content
8 These files did not have a license
9 */
11 function quitHook()
13 var xhr = new XMLHttpRequest();
14 xhr.open("GET", "http://" + location.host + "/server/shutdown", true);
15 xhr.onreadystatechange = function (event)
17 if (xhr.readyState == 4)
18 goQuitApplication();
20 xhr.send(null);
23 function canQuitApplication()
25 var os = Components.classes["@mozilla.org/observer-service;1"]
26 .getService(Components.interfaces.nsIObserverService);
27 if (!os)
29 return true;
32 try
34 var cancelQuit = Components.classes["@mozilla.org/supports-PRBool;1"]
35 .createInstance(Components.interfaces.nsISupportsPRBool);
36 os.notifyObservers(cancelQuit, "quit-application-requested", null);
38 // Something aborted the quit process.
39 if (cancelQuit.data)
41 return false;
44 catch (ex)
47 os.notifyObservers(null, "quit-application-granted", null);
48 return true;
51 function goQuitApplication()
53 const privs = 'UniversalXPConnect';
55 try
57 netscape.security.PrivilegeManager.enablePrivilege(privs);
59 catch(ex)
61 throw('goQuitApplication: privilege failure ' + ex);
64 if (!canQuitApplication())
66 return false;
69 const kAppStartup = '@mozilla.org/toolkit/app-startup;1';
70 const kAppShell = '@mozilla.org/appshell/appShellService;1';
71 var appService;
72 var forceQuit;
74 if (kAppStartup in Components.classes)
76 appService = Components.classes[kAppStartup].
77 getService(Components.interfaces.nsIAppStartup);
78 forceQuit = Components.interfaces.nsIAppStartup.eForceQuit;
81 else if (kAppShell in Components.classes)
83 appService = Components.classes[kAppShell].
84 getService(Components.interfaces.nsIAppShellService);
85 forceQuit = Components.interfaces.nsIAppShellService.eForceQuit;
87 else
89 throw 'goQuitApplication: no AppStartup/appShell';
92 var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
94 var windowManagerInterface = windowManager.
95 QueryInterface(Components.interfaces.nsIWindowMediator);
97 var enumerator = windowManagerInterface.getEnumerator(null);
99 while (enumerator.hasMoreElements())
101 var domWindow = enumerator.getNext();
102 if (("tryToClose" in domWindow) && !domWindow.tryToClose())
104 return false;
106 domWindow.close();
111 appService.quit(forceQuit);
113 catch(ex)
115 throw('goQuitApplication: ' + ex);
118 return true;
121 // bloat test driver for TestGtkEmbed
123 // set |user_pref("dom.allow_scripts_to_close_windows", true);| to
124 // allow this to close the window when the loop is done.
126 // "ftp://ftp.mozilla.org", // not supported for TestGtkEmbed
129 var list =
131 "sample.html",
132 "forms.html",
133 "grid.html",
134 "forms.html",
135 "elements.html"
137 var interval = 5000; // 15000
138 var idx = 0;
139 var w;
141 window.onload = function () {
142 w = window.open("about:blank");
143 window.setTimeout(loadURL, interval);
145 function loadURL () {
146 w.location.href = list[idx++];
147 if (idx < list.length) {
148 window.setTimeout(loadURL, interval);
149 } else {
150 if (navigator.platform.indexOf('Mac') != -1) {
151 goQuitApplication();
152 } else {
153 window.setTimeout("w.close();", interval);
154 window.setTimeout("window.close();", interval*2);
158 var i;
160 for(i=0; i < list.length;i++) {
161 document.write(list[i]);
162 document.write("<br>");
164 </script>