Index: LayoutTests/css3/flexbox/flex-flow-initial.html |
diff --git a/LayoutTests/css3/flexbox/flex-flow-initial.html b/LayoutTests/css3/flexbox/flex-flow-initial.html |
index 98a541dcc9638271f2fd58aa86e19d7917ee59c1..35c5978779f6b9af593bb4dbaef737746a3ca212 100644 |
--- a/LayoutTests/css3/flexbox/flex-flow-initial.html |
+++ b/LayoutTests/css3/flexbox/flex-flow-initial.html |
@@ -1,27 +1,27 @@ |
<!DOCTYPE html> |
<style> |
#test1 { |
- -webkit-flex-flow: column; |
+ flex-flow: column; |
} |
#test1 { |
- -webkit-flex-flow: initial; |
+ flex-flow: initial; |
} |
#test2 { |
- -webkit-flex-direction: column; |
+ flex-direction: column; |
} |
#test2 { |
- -webkit-flex-direction: initial; |
+ flex-direction: initial; |
} |
</style> |
<span id="test1"></span> |
<span id="test2"></span> |
<script src="../../resources/js-test.js"></script> |
<script> |
-description("Tests that 'initial' is handled correctly for the -webkit-flex-flow shorthand."); |
-value1 = window.getComputedStyle(test1).webkitFlexDirection; |
-value2 = window.getComputedStyle(test2).webkitFlexDirection; |
-shouldBeEqualToString('window.getComputedStyle(test1).webkitFlexDirection', 'row'); |
-shouldBeEqualToString('window.getComputedStyle(test2).webkitFlexDirection', 'row'); |
+description("Tests that 'initial' is handled correctly for the flex-flow shorthand."); |
+value1 = window.getComputedStyle(test1).flexDirection; |
+value2 = window.getComputedStyle(test2).flexDirection; |
+shouldBeEqualToString('window.getComputedStyle(test1).flexDirection', 'row'); |
+shouldBeEqualToString('window.getComputedStyle(test2).flexDirection', 'row'); |
if (window.testRunner) |
testRunner.dumpAsText(); |
</script> |