blob: 86caa10e050ff55c7762a8f6f891d285984c055a (
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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const TEST_URI = "data:text/html;charset=utf-8,Web Console test for " +
"reflow activity";
add_task(function* () {
let { browser } = yield loadTab(TEST_URI);
let hud = yield openConsole();
function onReflowListenersReady() {
browser.contentDocument.body.style.display = "none";
browser.contentDocument.body.clientTop;
}
Services.prefs.setBoolPref("devtools.webconsole.filter.csslog", true);
hud.ui._updateReflowActivityListener(onReflowListenersReady);
Services.prefs.clearUserPref("devtools.webconsole.filter.csslog");
yield waitForMessages({
webconsole: hud,
messages: [{
text: /reflow: /,
category: CATEGORY_CSS,
severity: SEVERITY_LOG,
}],
});
});
|