Chromium Code Reviews| Index: LayoutTests/fast/css-grid-layout/grid-item-auto-margins-alignment-vertical-rl.html |
| diff --git a/LayoutTests/fast/css-grid-layout/grid-item-auto-margins-alignment-vertical-rl.html b/LayoutTests/fast/css-grid-layout/grid-item-auto-margins-alignment-vertical-rl.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cfeaf4c668e6b4240dbdb8b6f3f94218212410b8 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css-grid-layout/grid-item-auto-margins-alignment-vertical-rl.html |
| @@ -0,0 +1,123 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<link href="resources/grid.css" rel="stylesheet"> |
| +<script src="../../resources/check-layout.js"></script> |
| +<style> |
| +body { |
| + margin: 0; |
| +} |
| + |
| +.grid { |
| + grid-template-columns: 100px 100px; |
| + grid-template-rows: 200px 200px; |
| + width: -webkit-fit-content; |
|
Manuel Rego
2015/09/24 11:38:26
Ditto.
jfernandez
2015/09/25 13:47:01
Done.
|
| + margin-bottom: 20px; |
| +} |
| + |
| +.item { |
| + width: 20px; |
| + height: 40px; |
| +} |
| + |
| +.autoMarginTop { margin-top: auto; } |
| +.autoMarginRight { margin-right: auto; } |
| +.autoMarginBottom { margin-bottom: auto; } |
| +.autoMarginLeft { margin-left: auto; } |
| +.autoMargin { margin: auto; } |
| + |
| +.itemsCenter { |
| + align-items: center; |
| + justify-items: center; |
| +} |
| +</style> |
| +</head> |
| +<body onload="checkLayout('.grid')"> |
| + |
| +<p>This test checks that aling-self and justify-self properties are not applied when there is auto-margin in the correponding axis. Instead, auto-margin alignment should be applied.</p> |
| + |
| +<p>Direction: LTR | Self Aligmment: center | fixed size items | 1 auto-margin</p> |
| +<div style="position: relative"> |
| + <div class="grid verticalRL itemsCenter" data-expected-width="400" data-expected-height="200"> |
| + <div class="item autoMarginTop firstRowFirstColumn" data-offset-x="290" data-offset-y="60" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMarginRight firstRowSecondColumn" data-offset-x="200" data-offset-y="130" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMarginLeft secondRowFirstColumn" data-offset-x="180" data-offset-y="30" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMarginBottom secondRowSecondColumn" data-offset-x="90" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div> |
| + </div> |
| +</div> |
| + |
| +<p>Direction: LTR | Self Aligmment: start | fixed size items | 4 auto-margin</p> |
| +<div style="position: relative"> |
| + <div class="grid verticalRL" data-expected-width="400" data-expected-height="200"> |
| + <div class="item autoMargin firstRowFirstColumn" data-offset-x="290" data-offset-y="30" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMargin firstRowSecondColumn" data-offset-x="290" data-offset-y="130" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMargin secondRowFirstColumn" data-offset-x="90" data-offset-y="30" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMargin secondRowSecondColumn" data-offset-x="90" data-offset-y="130" data-expected-width="20" data-expected-height="40"></div> |
| + </div> |
| +</div> |
| + |
| +<p>Direction: LTR | Self Aligmment: center | auto size items | 1 auto-margin</p> |
| +<div style="position: relative"> |
| + <div class="grid verticalRL itemsCenter" data-expected-width="400" data-expected-height="200"> |
| + <div class="item autoMarginTop firstRowFirstColumn" data-offset-x="290" data-offset-y="60" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMarginRight firstRowSecondColumn" data-offset-x="200" data-offset-y="130" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMarginLeft secondRowFirstColumn" data-offset-x="180" data-offset-y="30" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMarginBottom secondRowSecondColumn" data-offset-x="90" data-offset-y="100" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + </div> |
| +</div> |
| + |
| +<p>Direction: LTR | Self Aligmment: start | auto size items | 4 auto-margin</p> |
| +<div style="position: relative"> |
| + <div class="grid verticalRL" data-expected-width="400" data-expected-height="200"> |
| + <div class="item autoMargin firstRowFirstColumn" data-offset-x="290" data-offset-y="30" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMargin firstRowSecondColumn" data-offset-x="290" data-offset-y="130" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMargin secondRowFirstColumn" data-offset-x="90" data-offset-y="30" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMargin secondRowSecondColumn" data-offset-x="90" data-offset-y="130" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + </div> |
| +</div> |
| + |
| +<!-- direction RTL --> |
| +<p>Direction: RTL | Self Aligmment: center | fixed size items | 1 auto-margin</p> |
| +<div style="position: relative"> |
| + <div class="grid verticalRL itemsCenter directionRTL" data-expected-width="400" data-expected-height="200"> |
| + <div class="item autoMarginTop firstRowFirstColumn" data-offset-x="290" data-offset-y="160" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMarginRight firstRowSecondColumn" data-offset-x="200" data-offset-y="30" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMarginLeft secondRowFirstColumn" data-offset-x="180" data-offset-y="130" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMarginBottom secondRowSecondColumn" data-offset-x="90" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> |
| + </div> |
| +</div> |
| + |
| + |
| +<p>Direction: RTL | Self Aligmment: start | fixed size items | 4 auto-margin</p> |
| +<div style="position: relative"> |
| + <div class="grid verticalRL directionRTL" data-expected-width="400" data-expected-height="200"> |
| + <div class="item autoMargin firstRowFirstColumn" data-offset-x="290" data-offset-y="130" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMargin firstRowSecondColumn" data-offset-x="290" data-offset-y="30" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMargin secondRowFirstColumn" data-offset-x="90" data-offset-y="130" data-expected-width="20" data-expected-height="40"></div> |
| + <div class="item autoMargin secondRowSecondColumn" data-offset-x="90" data-offset-y="30" data-expected-width="20" data-expected-height="40"></div> |
| + </div> |
| +</div> |
| + |
| +<p>Direction: RTL | Self Aligmment: center | auto size items | 1 auto-margin</p> |
| +<div style="position: relative"> |
| + <div class="grid verticalRL itemsCenter directionRTL" data-expected-width="400" data-expected-height="200"> |
| + <div class="item autoMarginTop firstRowFirstColumn" data-offset-x="290" data-offset-y="160" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMarginRight firstRowSecondColumn" data-offset-x="200" data-offset-y="30" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMarginLeft secondRowFirstColumn" data-offset-x="180" data-offset-y="130" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMarginBottom secondRowSecondColumn" data-offset-x="90" data-offset-y="0" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + </div> |
| +</div> |
| + |
| + |
| +<p>Direction: RTL | Self Aligmment: start | auto size items | 4 auto-margin</p> |
| +<div style="position: relative"> |
| + <div class="grid verticalRL directionRTL" data-expected-width="400" data-expected-height="200"> |
| + <div class="item autoMargin firstRowFirstColumn" data-offset-x="290" data-offset-y="130" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMargin firstRowSecondColumn" data-offset-x="290" data-offset-y="30" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMargin secondRowFirstColumn" data-offset-x="90" data-offset-y="130" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + <div class="item autoMargin secondRowSecondColumn" data-offset-x="90" data-offset-y="30" data-expected-width="20" data-expected-height="40"><div class="item"></div></div> |
| + </div> |
| +</div> |
| + |
| +</body> |
| +</html> |