mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-12 13:42:03 +00:00
34 lines
997 B
JavaScript
34 lines
997 B
JavaScript
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
const TEST_URI = "data:text/html;charset=utf-8,Web Console test for " +
|
|
"reflow activity";
|
|
|
|
var test = asyncTest(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,
|
|
}],
|
|
});
|
|
});
|