blob: 178d1b89437b4e44bdce46b0893bd2bfca25a8c4 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Media Queries - color-index media feature supported</title>
<style>
/* One of the media queries below should match. */
@media (color-index: 0) {
#test::before {
content: "PASS";
}
}
@media (min-color-index: 1) {
#test::after {
content: "PASS";
}
}
</style>
<head>
<body>
<p>You should see the word PASS exactly once below.</p>
<p id="test"></p>
</body>
</html>