Index: LayoutTests/fast/media/media-feature-monochrome.html |
diff --git a/LayoutTests/fast/media/media-feature-monochrome.html b/LayoutTests/fast/media/media-feature-monochrome.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..62930b2ba10cae5db339cd5076011f08c7677898 |
--- /dev/null |
+++ b/LayoutTests/fast/media/media-feature-monochrome.html |
@@ -0,0 +1,9 @@ |
+<!DOCTYPE html> |
+<style> |
+/* Matches monochrome displays. */ |
+@media not all and (monochrome: 0) { #test::before { content: "PASS"; } } |
+/* Matches non-monochrome displays. */ |
+@media (monochrome: 0) { #test::after { content: "PASS"; } } |
+</style> |
+<p>You should see the word PASS below.</p> |
+<p id="test"></p> |