blob: 05d362328a30c22324870626766a2f2c71465b5d [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>
Forced colors mode - backplate.
</title>
<link rel="help" href="https://www.w3.org/TR/css-color-adjust-1/#forced">
<link rel=match href="forced-colors-mode-backplate-01-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
body {
background-image: url("../resources/test-image.jpg");
font-family: Ahem;
font-size: 10px;
line-height: 10px;
text-align: justify;
width: 100px;
}
#a {
forced-color-adjust: auto;
}
#b {
forced-color-adjust: none;
}
</style>
<body>
<div id="a">
A backplate should be drawn behind the text
<br>
in forced colors mode
<br>
(forced-color-adjust is set to auto.)
</div>
<br><br><br>
<div id="b">
There should NOT be a backplate drawn behind the text
<br>
in forced colors mode
<br>
(forced-color-adjust is set to none.)
</div>
</body>