blob: 06424705ac9563469ce2cbccb34a910b12e6e89d (
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
|
<!doctype html>
<title>Test: color-gamut only matches sRGB when resisting fingerprinting</title>
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<!--
This test is trivial as long as Firefox only matches the sRGB color-gamut media
query. Once Firefox can match additional color-gamuts, though, we should still
only match sRGB when resisting fingerprinting.
-->
<style>
div {
width: 100px;
height: 100px;
}
div.with-gamut {
background-color: red;
}
div.without-gamuts {
background-color: green;
}
@media (color-gamut: srgb) {
div.with-gamut {
background-color: green;
}
}
@media (color-gamut: p3), (color-gamut: rec2020) {
div.without-gamuts {
background-color: red;
}
}
</style>
<p>Test passes if there are two filled green squares and <strong>no red</strong>.
<div class=with-gamut></div>
<p></p>
<div class=without-gamuts></div>
|