|
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/. */ |
|
5 |
|
6 function test() |
|
7 { |
|
8 addTab("data:text/html;charset=utf-8,Web Console test for reflow activity"); |
|
9 |
|
10 browser.addEventListener("load", function onLoad() { |
|
11 browser.removeEventListener("load", onLoad, true); |
|
12 openConsole(gBrowser.selectedTab, function(hud) { |
|
13 |
|
14 function onReflowListenersReady(aType, aPacket) { |
|
15 browser.contentDocument.body.style.display = "none"; |
|
16 browser.contentDocument.body.clientTop; |
|
17 } |
|
18 |
|
19 Services.prefs.setBoolPref("devtools.webconsole.filter.csslog", true); |
|
20 hud.ui._updateReflowActivityListener(onReflowListenersReady); |
|
21 Services.prefs.clearUserPref("devtools.webconsole.filter.csslog"); |
|
22 |
|
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 } |