mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-27 09:09:55 +00:00
8c395520d9
Since these are just interpreted comments, there's 0 impact on actual code. This removes all lines that match /* vim: set(.*)tw=80: */ with S&R -- there are a few others scattered around which will be removed manually in a second part.
33 lines
910 B
JavaScript
33 lines
910 B
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* 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,
|
|
}],
|
|
});
|
|
});
|