summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/browser/browser_ext_themes_separators.js
blob: 4da4927ccfb472bac4c121ba0a4a24dffca01407 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
"use strict";

// This test checks whether applied WebExtension themes that attempt to change
// the separator colors are applied properly.

add_task(async function test_support_separator_properties() {
  const SEPARATOR_TOP_COLOR = "#ff00ff";
  const SEPARATOR_VERTICAL_COLOR = "#f0000f";
  const SEPARATOR_FIELD_COLOR = "#9400ff";
  const SEPARATOR_BOTTOM_COLOR = "#3366cc";

  let extension = ExtensionTestUtils.loadExtension({
    manifest: {
      theme: {
        images: {
          theme_frame: "image1.png",
        },
        colors: {
          frame: ACCENT_COLOR,
          tab_background_text: TEXT_COLOR,
          toolbar_top_separator: SEPARATOR_TOP_COLOR,
          toolbar_vertical_separator: SEPARATOR_VERTICAL_COLOR,
          // This property is deprecated, but left in to check it doesn't
          // unexpectedly break the theme installation.
          toolbar_field_separator: SEPARATOR_FIELD_COLOR,
          toolbar_bottom_separator: SEPARATOR_BOTTOM_COLOR,
        },
      },
    },
    files: {
      "image1.png": BACKGROUND,
    },
  });

  // Test the deprecated color property.
  let deprecatedMessagePromise = new Promise(resolve => {
    Services.console.registerListener(function listener(msg) {
      if (msg.message.includes("toolbar_field_separator")) {
        resolve();
        Services.console.unregisterListener(listener);
      }
    });
  });
  ExtensionTestUtils.failOnSchemaWarnings(false);
  await extension.startup();
  ExtensionTestUtils.failOnSchemaWarnings(true);
  info("Wait for property deprecation message");
  await deprecatedMessagePromise;

  let navbar = document.querySelector("#nav-bar");
  Assert.ok(
    window
      .getComputedStyle(navbar)
      .boxShadow.includes(`rgb(${hexToRGB(SEPARATOR_TOP_COLOR).join(", ")})`),
    "Top separator color properly set"
  );

  let panelUIButton = document.querySelector("#PanelUI-button");
  // Bug 1712334: This should test bookmark item toolbar separators instead
  Assert.equal(
    window
      .getComputedStyle(panelUIButton)
      .getPropertyValue("border-image-source"),
    "none",
    "No vertical separator on app menu"
  );

  let toolbox = document.querySelector("#navigator-toolbox");
  Assert.equal(
    window.getComputedStyle(toolbox).borderBottomColor,
    `rgb(${hexToRGB(SEPARATOR_BOTTOM_COLOR).join(", ")})`,
    "Bottom separator color properly set"
  );

  await extension.unload();
});