Index: LayoutTests/css3/flexbox/flex-shorthand-flex-basis-middle.html |
diff --git a/LayoutTests/css3/flexbox/flex-shorthand-flex-basis-middle.html b/LayoutTests/css3/flexbox/flex-shorthand-flex-basis-middle.html |
index 85b1a06737a25c9d0d63905c6b5af622c036dc66..7d53aee03aa709ee57775338c8de802ffaa111c2 100644 |
--- a/LayoutTests/css3/flexbox/flex-shorthand-flex-basis-middle.html |
+++ b/LayoutTests/css3/flexbox/flex-shorthand-flex-basis-middle.html |
@@ -9,7 +9,6 @@ |
} |
.flexbox > div { |
- flex: 1 0% 1; |
width: 50px; |
background: yellow; |
} |
@@ -17,9 +16,15 @@ |
<script src="../../resources/check-layout.js"></script> |
<body onload="checkLayout('.flexbox')"> |
<div class="flexbox"> |
- <div data-expected-width="50"></div> |
- <div data-expected-width="50"></div> |
- <div data-expected-width="50"></div> |
+ <div data-expected-width="50" style="flex: 1 0% 1"></div> |
+ <div data-expected-width="50" style="flex: 1 0% 1"></div> |
+ <div data-expected-width="50" style="flex: 1 0% 1"></div> |
+</div> |
+ |
+<div class="flexbox"> |
+ <div data-expected-width="50" style="flex: 1 auto 1"></div> |
+ <div data-expected-width="50" style="flex: 1 auto 1"></div> |
+ <div data-expected-width="50" style="flex: 1 auto 1"></div> |
</div> |
</body> |
</html> |