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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html

Issue 1031853002: [CSS Grid Layout] Content Distribution support for grid. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Missing layout test expectations file. Created 5 years, 8 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-content-alignment-overflow.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html b/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
index d368973b2198301fbb46831738f841350c85c0fa..9317634ad8bb709264fa4b96515b7454c71b0ea6 100644
--- a/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
+++ b/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
@@ -35,7 +35,7 @@ body {
.centerTrue {
align-content: center true;
- jusitfy-content: center true;
+ justify-content: center true;
}
.end {
@@ -70,10 +70,10 @@ body {
<div style="position: relative">
<div class="grid overflowHeight centerTrue" data-expected-width="200" data-expected-height="150">
- <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="-25" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="75" data-expected-width="50" data-expected-height="100"></div>
- <div class="firstRowSecondColumn" data-offset-x="50" data-offset-y="-25" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowSecondColumn" data-offset-x="50" data-offset-y="75" data-expected-width="50" data-expected-height="100"></div>
+ <div class="firstRowFirstColumn" data-offset-x="50" data-offset-y="-25" data-expected-width="50" data-expected-height="100"></div>
+ <div class="secondRowFirstColumn" data-offset-x="50" data-offset-y="75" data-expected-width="50" data-expected-height="100"></div>
+ <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="-25" data-expected-width="50" data-expected-height="100"></div>
+ <div class="secondRowSecondColumn" data-offset-x="100" data-offset-y="75" data-expected-width="50" data-expected-height="100"></div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698