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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-align-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
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/grid-align-content-distribution.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css-grid-layout/grid-align-content.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-align-content.html b/LayoutTests/fast/css-grid-layout/grid-align-content.html
index 911238efce82e9327fafebb02d3e0223f66bc333..6ae0c47dce7ae39ba70e110efd66524b436d8df6 100644
--- a/LayoutTests/fast/css-grid-layout/grid-align-content.html
+++ b/LayoutTests/fast/css-grid-layout/grid-align-content.html
@@ -60,63 +60,6 @@ body {
.alignContentFlexEnd {
align-content: flex-end;
}
-
-.alignContentEndTrue {
- align-content: end true;
-}
-
-.alignContentCenterTrue {
- align-content: center true;
-}
-
-.alignContentRightSafe {
- align-content: right safe;
-}
-
-.alignContentLeftTrue {
- align-content: left true;
-}
-
-.alignContentFlexStartTrue {
- align-content: flex-start true;
-}
-
-.alignContentFlexEndSafe {
- align-content: flex-end safe;
-}
-
-.alignContentSpaceBetween {
- align-content: space-between;
-}
-
-.alignContentSpaceAround {
- align-content: space-around;
-}
-
-.alignContentSpaceEvenly {
- align-content: space-evenly;
-}
-
-.alignContentStretch {
- align-content: stretch;
-}
-
-.alignContentSpaceBetweenLeft {
- align-content: space-between left;
-}
-
-.alignContentSpaceAroundEnd {
- align-content: space-around end;
-}
-
-.alignContentSpaceEvenlyRight {
- align-content: space-evenly right;
-}
-
-.alignContentStretchStart {
- align-content: stretch start;
-}
-
</style>
</head>
<body onload="checkLayout('.grid')">
@@ -193,87 +136,6 @@ body {
</div>
</div>
-<!-- content-distribution values always fallback to content-position. -->
-<div style="position: relative">
- <p>direction: LTR | align-content: 'space-between' (fallback to 'start')</p>
- <div class="grid alignContentSpaceBetween" 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 | align-content: 'space-between' (fallback to 'center')</p>
- <div class="grid alignContentSpaceAround" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="0" data-offset-y="50" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="50" data-offset-y="50" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="150" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="50" data-offset-y="150" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | align-content: 'space-evenly' (fallback to 'center')</p>
- <div class="grid alignContentSpaceEvenly" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="0" data-offset-y="50" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="50" data-offset-y="50" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="150" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="50" data-offset-y="150" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | align-content: 'space-stretch' (fallback to 'start')</p>
- <div class="grid alignContentStretch" 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 | align-content: 'space-between left' (fallback to 'left')</p>
- <div class="grid alignContentSpaceBetweenLeft" 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 | align-content: 'space-around end' (fallback to 'end')</p>
- <div class="grid alignContentSpaceAroundEnd" data-expected-width="200" data-expected-height="300">
- <div class="cell firstRowFirstColumn" data-offset-x="0" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
- <div class="firstRowSecondColumn" data-offset-x="50" data-offset-y="100" data-expected-width="50" data-expected-height="100"></div>
- <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="50" data-expected-height="100"></div>
- <div class="cell secondRowSecondColumn" data-offset-x="50" data-offset-y="200" data-expected-width="20" data-expected-height="40"></div>
- </div>
-</div>
-
-<div style="position: relative">
- <p>direction: LTR | align-content: 'space-evenly right' (fallback to 'right')</p>
- <div class="grid alignContentSpaceEvenlyRight" 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 | align-content: 'stretch end' (fallback to 'end')</p>
- <div class="grid alignContentStretchEnd" 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>
-
<!-- Default alignment and initial values. -->
<div style="position: relative">
<p>direction: LTR | align-content: 'auto' (resolved to 'start')</p>
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/grid-align-content-distribution.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698