Index: LayoutTests/fast/media/mq-unknown-ident-values.html |
diff --git a/LayoutTests/fast/media/mq-unknown-ident-values.html b/LayoutTests/fast/media/mq-unknown-ident-values.html |
index c02175432a8fc2e91f367887dcc6412d7929d10c..cd026319e399d8b8c15c3eabf8789891b84427ea 100644 |
--- a/LayoutTests/fast/media/mq-unknown-ident-values.html |
+++ b/LayoutTests/fast/media/mq-unknown-ident-values.html |
@@ -6,14 +6,11 @@ |
@media not all and (orientation: block) { |
#t1 { color: red; } |
} |
- @media not all and (view-mode: portrait) { |
- #t2 { color: red; } |
- } |
@media not all and (pointer: landscape) { |
- #t3 { color: red; } |
+ #t2 { color: red; } |
} |
@media not all and (scan: none) { |
- #t4 { color: red; } |
+ #t3 { color: red; } |
} |
</style> |
</head> |
@@ -21,6 +18,5 @@ |
<div id="t1">Should not be red</div> |
<div id="t2">Should not be red</div> |
<div id="t3">Should not be red</div> |
- <div id="t4">Should not be red</div> |
</body> |
</html> |