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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-justify-content.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-justify-content.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-justify-content.html b/LayoutTests/fast/css-grid-layout/grid-justify-content.html
index 6482232a6c5430987453d266df1cd39e2ffc523a..97913b937f6b51dd7db20c91231520ecbf8fc340 100644
--- a/LayoutTests/fast/css-grid-layout/grid-justify-content.html
+++ b/LayoutTests/fast/css-grid-layout/grid-justify-content.html
@@ -55,63 +55,6 @@ body {
.justifyContentFlexEnd {
justify-content: flex-end;
}
-
-.justifyContentEndTrue {
- justify-content: end true;
-}
-
-.justifyContentCenterTrue {
- justify-content: center true;
-}
-
-.justifyContentRightSafe {
- justify-content: right safe;
-}
-
-.justifyContentLeftTrue {
- justify-content: left true;
-}
-
-.justifyContentFlexStartTrue {
- justify-content: flex-start true;
-}
-
-.justifyContentFlexEndSafe {
- justify-content: flex-end safe;
-}
-
-.justifyContentSpaceBetween {
- justify-content: space-between;
-}
-
-.justifyContentSpaceAround {
- justify-content: space-around;
-}
-
-.justifyContentSpaceEvenly {
- justify-content: space-evenly;
-}
-
-.justifyContentStretch {
- justify-content: stretch;
-}
-
-.justifyContentSpaceBetweenLeft {
- justify-content: space-between left;
-}
-
-.justifyContentSpaceAroundEnd {
- justify-content: space-around end;
-}
-
-.justifyContentSpaceEvenlyRight {
- justify-content: space-evenly right;
-}
-
-.justifyContentStretchEnd {
- justify-content: stretch end;
-}
-
</style>
</head>
<body onload="checkLayout('.grid')">
@@ -188,87 +131,6 @@ body {
</div>
</div>
-<!-- content-distribution values always fallback to content-position. -->
-<div style="position: relative">
- <p>direction: LTR | justify-content: 'space-between' (fallback to 'start')</p>
- <div class="grid justifyContentSpaceBetween" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="50" data-offset-y="0" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="100" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="50" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | justify-content: 'space-around' (fallback to 'center')</p>
- <div class="grid justifyContentSpaceAround" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="50" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="50" data-offset-y="100" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="100" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | justify-content: 'space-evenly' (fallback to 'center')</p>
- <div class="grid justifyContentSpaceEvenly" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="50" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="50" data-offset-y="100" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="100" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | justify-content: 'stretch' (fallback to start)</p>
- <div class="grid justifyContentStretch" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="50" data-offset-y="0" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="100" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="50" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | justify-content: space-between left (fallback to left)</p>
- <div class="grid justifyContentSpaceBetweenLeft" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="50" data-offset-y="0" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="100" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="50" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | justify-content: 'space-around end' (fallback to end)</p>
- <div class="grid justifyContentSpaceAroundEnd" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="150" data-offset-y="0" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="100" data-offset-y="100" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="150" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | justify-content: 'space-evenly right' (fallback to 'right')</p>
- <div class="grid justifyContentSpaceEvenlyRight" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="150" data-offset-y="0" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="100" data-offset-y="100" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="150" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | justify-content: 'stretch end' (fallback to 'end')</p>
- <div class="grid justifyContentStretchEnd" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="150" data-offset-y="0" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="100" data-offset-y="100" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="150" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
<!-- Default alignment and initial values. -->
<div style="position: relative">
<p>direction: LTR | justify-content: 'auto' (resolved to 'start')</p>

Powered by Google App Engine
This is Rietveld 408576698