Index: LayoutTests/css3/flexbox/multiline-justify-content.html |
diff --git a/LayoutTests/css3/flexbox/multiline-justify-content.html b/LayoutTests/css3/flexbox/multiline-justify-content.html |
index 348176b19adc401a83daebbbecb3a426285b6f88..17b82d377f864bf88f1f0c65d6c56b87c6ab1c70 100644 |
--- a/LayoutTests/css3/flexbox/multiline-justify-content.html |
+++ b/LayoutTests/css3/flexbox/multiline-justify-content.html |
@@ -3,13 +3,13 @@ |
<style> |
.flexbox { |
position: relative; |
- display: -webkit-flex; |
+ display: flex; |
background-color: grey; |
max-width: 100px; |
- -webkit-align-content: flex-start; |
+ align-content: flex-start; |
} |
.flexbox > * { |
- -webkit-flex: none; |
+ flex: none; |
} |
.title { |
margin-top: 1em; |
@@ -33,37 +33,37 @@ |
-webkit-writing-mode: vertical-lr; |
} |
.row { |
- -webkit-flex-flow: row; |
+ flex-flow: row; |
} |
.row-reverse { |
- -webkit-flex-flow: row-reverse; |
+ flex-flow: row-reverse; |
} |
.column { |
- -webkit-flex-flow: column; |
+ flex-flow: column; |
} |
.column-reverse { |
- -webkit-flex-flow: column-reverse; |
+ flex-flow: column-reverse; |
} |
.wrap { |
- -webkit-flex-wrap: wrap; |
+ flex-wrap: wrap; |
} |
.wrap-reverse { |
- -webkit-flex-wrap: wrap-reverse; |
+ flex-wrap: wrap-reverse; |
} |
.justify-content-flex-start { |
- -webkit-justify-content: flex-start; |
+ justify-content: flex-start; |
} |
.justify-content-flex-end { |
- -webkit-justify-content: flex-end; |
+ justify-content: flex-end; |
} |
.justify-content-center { |
- -webkit-justify-content: center; |
+ justify-content: center; |
} |
.justify-content-space-between { |
- -webkit-justify-content: space-between; |
+ justify-content: space-between; |
} |
.justify-content-space-around { |
- -webkit-justify-content: space-around; |
+ justify-content: space-around; |
} |
.flexbox > :nth-child(1) { |
background-color: #0f0; |