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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-item-spanning-resolution.html

Issue 196943026: [CSS Grid Layout] Support span in auto-placement algorithm (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 6 years, 7 months 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: LayoutTests/fast/css-grid-layout/grid-item-spanning-resolution.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-item-spanning-resolution.html b/LayoutTests/fast/css-grid-layout/grid-item-spanning-resolution.html
index 27f0b2261c5147ebebf460a31ba6d8805b120d1b..a4e19bfca610c4dafb907aac96fc4da4d3529973 100644
--- a/LayoutTests/fast/css-grid-layout/grid-item-spanning-resolution.html
+++ b/LayoutTests/fast/css-grid-layout/grid-item-spanning-resolution.html
@@ -195,13 +195,13 @@
<div style="position: relative">
<div class="grid" id="fixedGrid" style="grid-auto-flow: row;">
<div class="sizedToGridArea" style="grid-column: 1; grid-row: 1;" data-offset-x="0" data-offset-y="0" data-expected-width="10" data-expected-height="15"></div>
- <div class="sizedToGridArea doubleSpan" data-offset-x="10" data-offset-y="0" data-expected-width="20" data-expected-height="15"></div>
+ <div class="sizedToGridArea doubleSpan" data-offset-x="10" data-offset-y="0" data-expected-width="60" data-expected-height="105"></div>
</div>
<div style="position: relative">
<div class="grid" id="fixedGrid" style="grid-auto-flow: column;">
<div class="sizedToGridArea" style="grid-column: 1; grid-row: 1;" data-offset-x="0" data-offset-y="0" data-expected-width="10" data-expected-height="15"></div>
- <div class="sizedToGridArea doubleSpan" data-offset-x="0" data-offset-y="15" data-expected-width="10" data-expected-height="30"></div>
+ <div class="sizedToGridArea doubleSpan" data-offset-x="0" data-offset-y="15" data-expected-width="30" data-expected-height="210"></div>
</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698