forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforced-colors-mode-02-ref.html
40 lines (40 loc) · 1020 Bytes
/
forced-colors-mode-02-ref.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
40
<!DOCTYPE html>
<meta charset="utf-8">
<title>Forced colors mode - style overrides for text reference.</title>
<style>
body {
background-color: lightblue;
}
#a {
background-color: Canvas;
border: 25px solid CanvasText;
box-shadow: 2px 2px Canvas;
color: CanvasText;
forced-color-adjust: none;
margin: 25px;
padding: 25px;
text-shadow: 1px 1px Canvas;
width: 300px;
}
#b {
background-color: lightgreen;
border: 25px solid green;
box-shadow: 2px 2px purple;
color: orange;
forced-color-adjust: none;
margin: 25px;
padding: 25px;
text-shadow: 1px 1px gray;
width: 300px;
}
</style>
<body>
<div id="a">
The colors and shadows of this text and text box should be overridden when in
forced colors mode (forced-color-adjust is set to auto.)
</div>
<div id="b">
The colors and shadows of this text and text box should NOT be overridden when in
forced colors mode (forced-color-adjust is set to none.)
</div>
</body>