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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/repeating-layout-must-produce-the-same-results.html

Issue 1407633003: [css-grid] Implementation of Baseline Self-Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Get advantage of recomputing the intrinsic size to solve the issues with orthogonal flows. Created 3 years, 10 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: third_party/WebKit/LayoutTests/fast/css-grid-layout/repeating-layout-must-produce-the-same-results.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/repeating-layout-must-produce-the-same-results.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/repeating-layout-must-produce-the-same-results.html
index 39951fde24b95d04aa28bdeb91e5a1a4620bbcf1..f288e6bfedee256506c4661642984dc86a8cde34 100644
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/repeating-layout-must-produce-the-same-results.html
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/repeating-layout-must-produce-the-same-results.html
@@ -36,18 +36,18 @@ body {
</script>
<body onload="runTest();">
<p>Regresison test for bug 628565 - Ensure that we get the same sizing results when doing several layouts.</p>
-<div class="grid fit-content" data-expected-width="135" data-expected-height="60">
+<div class="grid fit-content" data-expected-width="160" data-expected-height="60">
<div class="i1" data-expected-width="50" data-expected-height="50">XX X</div>
- <div class="i2" data-expected-width="75" data-expected-height="50">XX X</div>
+ <div class="i2" data-expected-width="100" data-expected-height="50">XX X</div>
</div>
<br>
-<div class="grid min-content" data-expected-width="85" data-expected-height="60">
+<div class="grid min-content" data-expected-width="110" data-expected-height="60">
<div class="i1" data-expected-width="50" data-expected-height="50">XX X</div>
<div class="i2" data-expected-width="50" data-expected-height="50">XX X</div>
</div>
<br>
-<div class="grid max-content" data-expected-width="135" data-expected-height="60">
+<div class="grid max-content" data-expected-width="160" data-expected-height="60">
<div class="i1" data-expected-width="50" data-expected-height="50">XX X</div>
- <div class="i2" data-expected-width="75" data-expected-height="50">XX X</div>
+ <div class="i2" data-expected-width="100" data-expected-height="50">XX X</div>
</div>
</body

Powered by Google App Engine
This is Rietveld 408576698