summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser_webconsole_bug_589162_css_filter.js
blob: 509c875f8881439ba7e4ab3cae4297ccdd1a3734 (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
34
35
36
37
38
39
/* -*- 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,<div style='font-size:3em;" +
                 "foobarCssParser:baz'>test CSS parser filter</div>";

/**
 * Unit test for bug 589162:
 * CSS filtering on the console does not work
 */
add_task(function* () {
  let {tab} = yield loadTab(TEST_URI);
  let hud = yield openConsole(tab);

  // CSS warnings are disabled by default.
  hud.setFilterState("cssparser", true);
  hud.jsterm.clearOutput();

  BrowserReload();

  yield waitForMessages({
    webconsole: hud,
    messages: [{
      text: "foobarCssParser",
      category: CATEGORY_CSS,
      severity: SEVERITY_WARNING,
    }],
  });

  hud.setFilterState("cssparser", false);

  let msg = "the unknown CSS property warning is not displayed, " +
            "after filtering";
  testLogEntry(hud.outputNode, "foobarCssParser", msg, true, true);
});