gecko-dev/devtools/client/webconsole/test/browser_webconsole_reflow.js
2017-12-07 12:55:24 -08:00

34 lines
971 B
JavaScript

/* -*- 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.contentDocumentAsCPOW.body.style.display = "none";
browser.contentDocumentAsCPOW.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,
}],
});
});