summaryrefslogtreecommitdiffstats
path: root/browser/components/extensions/test/browser/browser_toolbar_prefers_color_scheme.js
blob: ae7f488f0a5761a43dc7bcf59f0ea791782c7dde (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const kDark = 0;
const kLight = 1;
const kSystem = 2;

// The above tests should be enough to make sure that the prefs behave as
// expected, the following ones test various edge cases in a simpler way.
async function testTheme(description, toolbar, content, themeManifestData) {
  info(description);

  let extension = ExtensionTestUtils.loadExtension({
    manifest: {
      browser_specific_settings: {
        gecko: {
          id: "dummy@mochi.test",
        },
      },
      ...themeManifestData,
    },
  });

  await Promise.all([
    TestUtils.topicObserved("lightweight-theme-styling-update"),
    extension.startup(),
  ]);

  is(
    SpecialPowers.getIntPref("browser.theme.toolbar-theme"),
    toolbar,
    "Toolbar theme expected"
  );
  is(
    SpecialPowers.getIntPref("browser.theme.content-theme"),
    content,
    "Content theme expected"
  );

  await Promise.all([
    TestUtils.topicObserved("lightweight-theme-styling-update"),
    extension.unload(),
  ]);
}

add_task(async function test_dark_toolbar_dark_text() {
  // Bug 1743010
  await testTheme(
    "Dark toolbar color, dark toolbar background",
    kDark,
    kSystem,
    {
      theme: {
        colors: {
          toolbar: "rgb(20, 17, 26)",
          toolbar_text: "rgb(251, 29, 78)",
        },
      },
    }
  );

  // Dark frame text is ignored as it might be overlaid with an image,
  // see bug 1741931.
  await testTheme("Dark frame is ignored", kLight, kSystem, {
    theme: {
      colors: {
        frame: "#000000",
        tab_background_text: "#000000",
      },
    },
  });

  await testTheme(
    "Semi-transparent toolbar backgrounds are ignored.",
    kLight,
    kSystem,
    {
      theme: {
        colors: {
          toolbar: "rgba(0, 0, 0, .2)",
          toolbar_text: "#000",
        },
      },
    }
  );
});

add_task(async function dark_theme_presence_overrides_heuristics() {
  const systemScheme = window.matchMedia("(-moz-system-dark-theme)").matches
    ? kDark
    : kLight;
  await testTheme(
    "darkTheme presence overrides heuristics",
    systemScheme,
    kSystem,
    {
      theme: {
        colors: {
          toolbar: "#000",
          toolbar_text: "#fff",
        },
      },
      dark_theme: {
        colors: {
          toolbar: "#000",
          toolbar_text: "#fff",
        },
      },
    }
  );
});

add_task(async function color_scheme_override() {
  await testTheme(
    "color_scheme overrides toolbar / toolbar_text pair (dark)",
    kDark,
    kDark,
    {
      theme: {
        colors: {
          toolbar: "#fff",
          toolbar_text: "#000",
        },
        properties: {
          color_scheme: "dark",
        },
      },
    }
  );

  await testTheme(
    "color_scheme overrides toolbar / toolbar_text pair (light)",
    kLight,
    kLight,
    {
      theme: {
        colors: {
          toolbar: "#000",
          toolbar_text: "#fff",
        },
        properties: {
          color_scheme: "light",
        },
      },
    }
  );

  await testTheme(
    "content_color_scheme overrides ntp_text / ntp_background (dark)",
    kLight,
    kDark,
    {
      theme: {
        colors: {
          toolbar: "#fff",
          toolbar_text: "#000",
          ntp_background: "#fff",
          ntp_text: "#000",
        },
        properties: {
          content_color_scheme: "dark",
        },
      },
    }
  );

  await testTheme(
    "content_color_scheme overrides ntp_text / ntp_background (light)",
    kLight,
    kLight,
    {
      theme: {
        colors: {
          toolbar: "#fff",
          toolbar_text: "#000",
          ntp_background: "#000",
          ntp_text: "#fff",
        },
        properties: {
          content_color_scheme: "light",
        },
      },
    }
  );

  await testTheme(
    "content_color_scheme overrides color_scheme only for content",
    kLight,
    kDark,
    {
      theme: {
        colors: {
          toolbar: "#fff",
          toolbar_text: "#000",
          ntp_background: "#fff",
          ntp_text: "#000",
        },
        properties: {
          content_color_scheme: "dark",
        },
      },
    }
  );

  await testTheme(
    "content_color_scheme sytem overrides color_scheme only for content",
    kLight,
    kSystem,
    {
      theme: {
        colors: {
          toolbar: "#fff",
          toolbar_text: "#000",
          ntp_background: "#fff",
          ntp_text: "#000",
        },
        properties: {
          content_color_scheme: "system",
        },
      },
    }
  );

  await testTheme("color_scheme: sytem override", kSystem, kSystem, {
    theme: {
      colors: {
        toolbar: "#fff",
        toolbar_text: "#000",
        ntp_background: "#fff",
        ntp_text: "#000",
      },
      properties: {
        color_scheme: "system",
        content_color_scheme: "system",
      },
    },
  });
});

add_task(async function unified_theme() {
  await SpecialPowers.pushPrefEnv({
    set: [["browser.theme.unified-color-scheme", true]],
  });

  await testTheme("Dark toolbar color", kDark, kDark, {
    theme: {
      colors: {
        toolbar: "rgb(20, 17, 26)",
        toolbar_text: "rgb(251, 29, 78)",
      },
    },
  });

  await testTheme("Light toolbar color", kLight, kLight, {
    theme: {
      colors: {
        toolbar: "white",
        toolbar_text: "black",
      },
    },
  });

  await SpecialPowers.popPrefEnv();
});