Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* vim:set ts=2 sw=2 sts=2 et: */
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 function test()
7 {
8 addTab("data:text/html;charset=utf-8,Web Console test for reflow activity");
10 browser.addEventListener("load", function onLoad() {
11 browser.removeEventListener("load", onLoad, true);
12 openConsole(gBrowser.selectedTab, function(hud) {
14 function onReflowListenersReady(aType, aPacket) {
15 browser.contentDocument.body.style.display = "none";
16 browser.contentDocument.body.clientTop;
17 }
19 Services.prefs.setBoolPref("devtools.webconsole.filter.csslog", true);
20 hud.ui._updateReflowActivityListener(onReflowListenersReady);
21 Services.prefs.clearUserPref("devtools.webconsole.filter.csslog");
23 waitForMessages({
24 webconsole: hud,
25 messages: [{
26 text: /reflow: /,
27 category: CATEGORY_CSS,
28 severity: SEVERITY_LOG,
29 }],
30 }).then(() => {
31 finishTest();
32 });
33 });
34 }, true);
35 }