| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-align-stretching-replaced-items.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-align-stretching-replaced-items.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-align-stretching-replaced-items.html
|
| index 274de17965d63e06becc39bafdbb1b2c694cba02..f152be82d1f9795ff10bea4ad7e66988886df99b 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-align-stretching-replaced-items.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-align-stretching-replaced-items.html
|
| @@ -23,28 +23,28 @@
|
| <div style="position: relative">
|
| <p>The blue image's original size is 100px x 100px, but it should be stretched to fill the 500px x 500px grid area it's placed into</p>
|
| <div class="grid">
|
| - <img src="../../css3/images/resources/blue-100.png" data-expected-width="500" data-expected-height="500"/>
|
| + <img src="../../images/resources/blue-100.png" data-expected-width="500" data-expected-height="500"/>
|
| </div>
|
| </div>
|
|
|
| <div style="position: relative">
|
| <p>The blue image's original size is 100px x 100px, non-stretch values prevent stretching to be applied.</p>
|
| <div class="grid itemsCenter">
|
| - <img src="../../css3/images/resources/blue-100.png" data-expected-width="100" data-expected-height="100"/>
|
| + <img src="../../images/resources/blue-100.png" data-expected-width="100" data-expected-height="100"/>
|
| </div>
|
| </div>
|
|
|
| <div style="position: relative">
|
| <p>The blue image's original size is 100px x 100px, non-auto sizes prevent stretching to be applied.</p>
|
| <div class="grid">
|
| - <img class="fixedSizes" src="../../css3/images/resources/blue-100.png" data-expected-width="150" data-expected-height="150"/>
|
| + <img class="fixedSizes" src="../../images/resources/blue-100.png" data-expected-width="150" data-expected-height="150"/>
|
| </div>
|
| </div>
|
|
|
| <div style="position: relative">
|
| <p>The blue image's original size is 100px x 100px, auto-margins prevent stretching to be applied.</p>
|
| <div class="grid">
|
| - <img class="autoMargins" src="../../css3/images/resources/blue-100.png" data-expected-width="100" data-expected-height="100"/>
|
| + <img class="autoMargins" src="../../images/resources/blue-100.png" data-expected-width="100" data-expected-height="100"/>
|
| </div>
|
| </div>
|
|
|
|
|