summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_inactive_css_xul.js
blob: b9536f1f9e5d926e0995edef2a465ddd60526902 (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
40
41
42
43
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test inactive css properties in XUL documents.

const TEST_URI = URL_ROOT_SSL + "doc_inactive_css_xul.xhtml";

const TEST_DATA = [
  {
    selector: "#test-img-in-xul",
    inactiveDeclarations: [
      {
        declaration: { "grid-column-gap": "5px" },
        ruleIndex: 0,
      },
    ],
    activeDeclarations: [
      {
        declarations: {
          width: "10px",
          height: "10px",
        },
        ruleIndex: 0,
      },
    ],
  },
];

add_task(async () => {
  await SpecialPowers.pushPermissions([
    { type: "allowXULXBL", allow: true, context: URL_ROOT_SSL },
  ]);

  info("Open a url to a XUL document");
  await addTab(TEST_URI);

  info("Open the inspector");
  const { inspector, view } = await openRuleView();

  await runInactiveCSSTests(view, inspector, TEST_DATA);
});