| Index: LayoutTests/fast/css-grid-layout/justify-self-cell.html
|
| diff --git a/LayoutTests/fast/css-grid-layout/justify-self-cell.html b/LayoutTests/fast/css-grid-layout/justify-self-cell.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f8852c6574aa59c83f916885c3036908de0f84fd
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css-grid-layout/justify-self-cell.html
|
| @@ -0,0 +1,142 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<link href="resources/grid.css" rel="stylesheet">
|
| +<style>
|
| +.grid {
|
| + grid-definition-columns: 100px 100px;
|
| + grid-definition-rows: 200px 200px;
|
| + width: -webkit-fit-content;
|
| +}
|
| +
|
| +.cell {
|
| + width: 10px;
|
| + height: 20px;
|
| +}
|
| +
|
| +.justifySelfStretch {
|
| + justify-self: stretch;
|
| +}
|
| +
|
| +.justifySelfStart {
|
| + justify-self: start;
|
| +}
|
| +
|
| +.justifySelfEnd {
|
| + justify-self: end;
|
| +}
|
| +
|
| +.justifySelfCenter {
|
| + justify-self: center;
|
| +}
|
| +
|
| +.justifySelfRight {
|
| + justify-self: right;
|
| +}
|
| +
|
| +.justifySelfLeft {
|
| + justify-self: left;
|
| +}
|
| +
|
| +.justifySelfFlexStart {
|
| + justify-self: flex-start;
|
| +}
|
| +
|
| +.justifySelfFlexEnd {
|
| + justify-self: flex-end;
|
| +}
|
| +
|
| +.justifySelfSelfStart {
|
| + justify-self: self-start;
|
| +}
|
| +
|
| +.justifySelfSelfEnd {
|
| + justify-self: self-end;
|
| +}
|
| +</style>
|
| +<script src="../../resources/check-layout.js"></script>
|
| +<body onload="checkLayout('.grid')">
|
| +
|
| +<p>This test checks that the justify-self property is applied correctly.</p>
|
| +
|
| +<div style="position: relative" class="constrainedContainer">
|
| +<div class="grid" data-expected-width="200" data-expected-height="400">
|
| + <div class="justifySelfStretch firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="0"></div>
|
| + <div class="cell justifySelfStart firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfEnd firstRowSecondColumn" data-offset-x="190" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfCenter secondRowFirstColumn" data-offset-x="45" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfRight secondRowSecondColumn" data-offset-x="190" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfLeft secondRowSecondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| +</div>
|
| +
|
| +<div style="position: relative" class="constrainedContainer">
|
| +<div class="grid" data-expected-width="200" data-expected-height="400">
|
| + <div class="cell justifySelfFlexEnd firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfFlexStart firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfSelfStart secondRowFirstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfSelfEnd secondRowSecondColumn" data-offset-x="190" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| +</div>
|
| +</div>
|
| +
|
| +<!-- Vertical writing mode. -->
|
| +<div style="position: relative" class="constrainedContainer">
|
| +<div class="grid verticalRL" data-expected-width="400" data-expected-height="200">
|
| + <!-- FIXME: Why is offset-x 400? -->
|
| + <div class="justifySelfStretch firstRowFirstColumn" data-offset-x="400" data-offset-y="0" data-expected-width="0" data-expected-height="100"></div>
|
| + <div class="cell justifySelfStart firstRowSecondColumn" data-offset-x="390" data-offset-y="100" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfEnd firstRowSecondColumn" data-offset-x="390" data-offset-y="180" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfCenter secondRowFirstColumn" data-offset-x="190" data-offset-y="40" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfRight secondRowSecondColumn" data-offset-x="190" data-offset-y="100" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfLeft secondRowSecondColumn" data-offset-x="190" data-offset-y="100" data-expected-width="10" data-expected-height="20"></div>
|
| +</div>
|
| +
|
| +<div style="position: relative" class="constrainedContainer">
|
| +<div class="grid verticalLR" data-expected-width="400" data-expected-height="200">
|
| + <div class="cell justifySelfFlexEnd firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfFlexStart firstRowSecondColumn" data-offset-x="0" data-offset-y="100" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfSelfStart secondRowFirstColumn" data-offset-x="200" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfSelfEnd secondRowSecondColumn" data-offset-x="200" data-offset-y="180" data-expected-width="10" data-expected-height="20"></div>
|
| +</div>
|
| +</div>
|
| +
|
| +<!-- RTL direction. -->
|
| +<div style="position: relative" class="constrainedContainer">
|
| +<div class="grid directionRTL" data-expected-width="200" data-expected-height="400">
|
| + <div class="justifySelfStretch firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="0"></div>
|
| + <div class="cell justifySelfStart firstRowSecondColumn" data-offset-x="190" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfEnd firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfCenter secondRowFirstColumn" data-offset-x="45" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfRight secondRowSecondColumn" data-offset-x="190" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfLeft secondRowSecondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| +</div>
|
| +
|
| +<div style="position: relative" class="constrainedContainer">
|
| +<div class="grid directionRTL" data-expected-width="200" data-expected-height="400">
|
| + <div class="cell justifySelfFlexEnd firstRowFirstColumn" data-offset-x="90" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfFlexStart firstRowSecondColumn" data-offset-x="190" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfSelfStart secondRowFirstColumn" data-offset-x="90" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfSelfEnd secondRowSecondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| +</div>
|
| +</div>
|
| +
|
| +<!-- RTL direction with opposite directions grid container vs grid item. -->
|
| +<div style="position: relative" class="constrainedContainer">
|
| +<div class="grid" data-expected-width="200" data-expected-height="400">
|
| + <div class="justifySelfStretch firstRowFirstColumn directionRTL" data-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="0"></div>
|
| + <div class="cell justifySelfStart firstRowSecondColumn directionRTL" data-offset-x="100" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfEnd firstRowSecondColumn directionRTL" data-offset-x="190" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfCenter secondRowFirstColumn directionRTL" data-offset-x="45" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfRight secondRowSecondColumn directionRTL" data-offset-x="190" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfLeft secondRowSecondColumn directionRTL" data-offset-x="100" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| +</div>
|
| +
|
| +<div style="position: relative" class="constrainedContainer">
|
| +<div class="grid" data-expected-width="200" data-expected-height="400">
|
| + <div class="cell justifySelfFlexEnd firstRowFirstColumn directionRTL" data-offset-x="0" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfFlexStart firstRowSecondColumn directionRTL" data-offset-x="100" data-offset-y="0" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfSelfStart secondRowFirstColumn directionRTL" data-offset-x="90" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| + <div class="cell justifySelfSelfEnd secondRowSecondColumn directionRTL" data-offset-x="100" data-offset-y="200" data-expected-width="10" data-expected-height="20"></div>
|
| +</div>
|
| +</div>
|
| +
|
| +</body>
|
| +</html>
|
|
|