forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforced-colors-mode-20.html
31 lines (30 loc) · 990 Bytes
/
forced-colors-mode-20.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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Forced colors mode - alpha channel.
Tests that the alpha channel for background colors are preserved in forced
colors mode.
</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>
body {
background-color: Canvas;
}
div {
background-color: rgba(114, 173, 218, .3);
}
</style>
<body id="body">
<div id="div">
Background colors should maintain their alpha channels in forced
colors mode.
</div>
</body>
<script>
var body_color = getComputedStyle(body).backgroundColor;
var expected_div_color = body_color.replace(')', ', 0.3)').replace('rgb(', 'rgba(');
test(function(){
assert_equals(getComputedStyle(div).backgroundColor, expected_div_color);
}, "Checks that background color alpha channels are preserved in forced colors mode.");
</script>