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..8288c9a31d10c299faee07b0b2ab4eb59bb376e5 |
--- /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"; } } |
apavlov
2013/05/15 07:41:48
Should the selector be actually #test::before ?
|
+/* 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> |