Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-align-stretching-replaced-items.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698