forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforced-colors-mode-11.html
39 lines (38 loc) · 1.07 KB
/
forced-colors-mode-11.html
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
<!DOCTYPE html>
<meta charset="utf-8">
<title>
Forced colors mode - forced-colors media query.
Tests that styles defined inside forced-color media query
are preserved in forced colors mode if forced-color-adjust
is none.
</title>
<link rel="help" href="https://www.w3.org/TR/css-color-adjust-1/#forced-colors-properties">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
@media (forced-colors: none) {
p {
background-color: rgb(255, 0, 0);
color: rgb(255, 255, 255);
}
}
@media (forced-colors: active) {
p {
background-color: rgb(0, 0, 255);
color: rgb(0, 128, 0);
forced-color-adjust: none;
}
}
</style>
</head>
<body>
<p id="p">
This text should be green in forced colors mode.
</p>
</body>
<script>
test(function() {
assert_equals(getComputedStyle(p).backgroundColor, "rgb(0, 0, 255)");
assert_equals(getComputedStyle(p).color, "rgb(0, 128, 0)");
}, "Checks that styles defined in forced-colors are preserved in forced colors mode.");
</script>