Index: LayoutTests/css3/flexbox/flexbox-overflow-auto.html |
diff --git a/LayoutTests/css3/flexbox/flexbox-overflow-auto.html b/LayoutTests/css3/flexbox/flexbox-overflow-auto.html |
index 358ceb6a86376d3502cf77289ee82be0996d93f6..dcf5c143f2e1b1906342c5d5e96071d4edf1c919 100644 |
--- a/LayoutTests/css3/flexbox/flexbox-overflow-auto.html |
+++ b/LayoutTests/css3/flexbox/flexbox-overflow-auto.html |
@@ -3,11 +3,11 @@ |
<head> |
<style> |
.test-row { |
- display: -webkit-flex; |
+ display: flex; |
margin-bottom: 5px; |
} |
.test-row > div { |
- -webkit-flex: none; |
+ flex: none; |
} |
.container { |
@@ -33,24 +33,24 @@ |
} |
.row { |
- -webkit-flex-direction: row; |
+ flex-direction: row; |
} |
.row-reverse { |
- -webkit-flex-direction: row-reverse; |
+ flex-direction: row-reverse; |
} |
.column { |
- -webkit-flex-direction: column; |
+ flex-direction: column; |
} |
.column-reverse { |
- -webkit-flex-direction: column-reverse; |
+ flex-direction: column-reverse; |
} |
.flexbox { |
border: 0 solid pink; |
- display: -webkit-flex; |
+ display: flex; |
height: 100px; |
width: 100px; |
overflow: auto; |
@@ -60,7 +60,7 @@ |
width: 200px; |
height: 200px; |
background: -webkit-radial-gradient(center, ellipse cover, rgba(30,87,153,1) 0%,rgba(89,148,202,1) 62%,rgba(95,154,207,0.7) 68%,rgba(125,185,232,0) 100%); |
- -webkit-flex: none; |
+ flex: none; |
} |
</style> |