Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<title>
Forced colors mode reference.
Tests that inline images are ignored in forced colors mode when
forced-color-adjust is auto.
</title>
<style>
body {
forced-color-adjust: none;
}
div {
display: inline;
}
#adjustnone {
background-image:
url("resources/test-image.jpg");
}
</style>
<body>
<div>
The background image behind this text should be ignored in forced colors
mode.
</div>
<div id="adjustnone">
The background image behind this text should NOT be ignored in forced
colors mode.
</div>
</body>