Index: LayoutTests/css3/supports.html |
diff --git a/LayoutTests/css3/supports.html b/LayoutTests/css3/supports.html |
index be554e94d64cdc35412181908080414a0dce3255..d40a0010bf26d56bb4bd70cc366dc45d3835e24a 100644 |
--- a/LayoutTests/css3/supports.html |
+++ b/LayoutTests/css3/supports.html |
@@ -86,19 +86,19 @@ |
/* Whitespace/Syntax */ |
@supports not( display: deadbeef) { |
- #t22 { content: "APPLIED" } |
+ #t22 { content: "FAIL" } |
} |
@supports (display: none)and ( -webkit-transition: all 1s ) { |
- #t23 { content: "APPLIED" } |
+ #t23 { content: "FAIL" } |
} |
@supports (display: none)or(-webkit-transition: all 1s) { |
- #t24 { content: "APPLIED" } |
+ #t24 { content: "FAIL" } |
} |
@supports (display: none) or(-webkit-transition: all 1s ) { |
- #t25 { content: "APPLIED" } |
+ #t25 { content: "FAIL" } |
} |
@supports (((((((display: none))))))) { |
@@ -243,7 +243,7 @@ |
<script> |
description("Test the @supports rule."); |
var numTests = 48; |
- var untouchedTests = [1, 3, 5, 8, 12, 13, 14, 18, 28, 29, 34, 36, 43, 44, 45, 46]; // Tests whose content shouldn't change from the UNTOUCHED default. |
+ var untouchedTests = [1, 3, 5, 8, 12, 13, 14, 18, 22, 23, 24, 25, 28, 29, 34, 36, 43, 44, 45, 46]; // Tests whose content shouldn't change from the UNTOUCHED default. |
var container = document.getElementById("test_container"); |
for (var i=0; i < numTests; i++) { |