| Index: LayoutTests/css3/flexbox/flexitem-stretch-image.html
|
| diff --git a/LayoutTests/css3/flexbox/flexitem-stretch-image.html b/LayoutTests/css3/flexbox/flexitem-stretch-image.html
|
| index 547142ee4c94590b3dae4e6fefac99900d0f70c2..8f64f26c243668f5ae9b6b556d2af1aa8f4b6261 100644
|
| --- a/LayoutTests/css3/flexbox/flexitem-stretch-image.html
|
| +++ b/LayoutTests/css3/flexbox/flexitem-stretch-image.html
|
| @@ -3,7 +3,7 @@
|
| <style>
|
| .flexbox {
|
| width: 600px;
|
| - display: -webkit-flex;
|
| + display: flex;
|
| background-color: #aaa;
|
| position: relative;
|
| min-height: 10px;
|
| @@ -19,8 +19,8 @@
|
| <body onload="checkLayout('.flexbox')">
|
|
|
| <div class="flexbox">
|
| - <img data-expected-display="block" data-expected-width="345" style="-webkit-flex: 1 0 auto;" src="../images/resources/blue-100.png">
|
| - <img data-expected-display="block" data-expected-width="255" data-expected-height="100" style="-webkit-flex: 1 0 auto;" src="../images/resources/green-10.png">
|
| + <img data-expected-display="block" data-expected-width="345" style="flex: 1 0 auto;" src="../images/resources/blue-100.png">
|
| + <img data-expected-display="block" data-expected-width="255" data-expected-height="100" style="flex: 1 0 auto;" src="../images/resources/green-10.png">
|
| </div>
|
|
|
| </body>
|
|
|