| Index: LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-lr.html
|
| diff --git a/LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-lr.html b/LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-lr.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e926d6e88778e5a10d081f60c25abe0eda37b1a0
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-lr.html
|
| @@ -0,0 +1,357 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<link href="resources/grid.css" rel="stylesheet">
|
| +<script src="../../resources/check-layout.js"></script>
|
| +<style>
|
| +body {
|
| + margin: 0px;
|
| +}
|
| +
|
| +.grid {
|
| + grid-auto-columns: 20px;
|
| + grid-auto-rows: 40px;
|
| + position: relative;
|
| + width: 400px;
|
| + height: 300px;
|
| +}
|
| +
|
| +.stretchedGrid {
|
| + grid-auto-columns: auto;
|
| +}
|
| +
|
| +.justifyContentSpaceBetween {
|
| + justify-content: space-between;
|
| +}
|
| +
|
| +.justifyContentSpaceAround {
|
| + justify-content: space-around;
|
| +}
|
| +
|
| +.justifyContentSpaceEvenly {
|
| + justify-content: space-evenly;
|
| +}
|
| +
|
| +.justifyContentStretch {
|
| + justify-content: stretch;
|
| +}
|
| +
|
| +.firstRowThirdColumn {
|
| + background-color: magenta;
|
| + grid-column: 3;
|
| + grid-row: 1;
|
| +}
|
| +
|
| +.secondRowThirdColumn {
|
| + background-color: navy;
|
| + grid-column: 3;
|
| + grid-row: 2;
|
| +}
|
| +
|
| +.firstRowFourthColumn {
|
| + background-color: green;
|
| + grid-column: 4;
|
| + grid-row: 1;
|
| +}
|
| +
|
| +.secondRowFourthColumn {
|
| + background-color: pink;
|
| + grid-column: 4;
|
| + grid-row: 2;
|
| +}
|
| +</style>
|
| +</head>
|
| +<body onload="checkLayout('.grid')">
|
| +
|
| +<p>This test checks that the justify-content property is applied correctly when using content-distribution values.</p>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'space-between'</p>
|
| + <div class="grid justifyContentSpaceBetween verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'space-around'</p>
|
| + <div class="grid justifyContentSpaceAround verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="65" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="215" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="65" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="215" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'space-evenly'</p>
|
| + <div class="grid justifyContentSpaceEvenly verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="87" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="193" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="87" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="193" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'stretch'</p>
|
| + <div class="grid stretchedGrid justifyContentStretch verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="150"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="150" data-expected-width="40" data-expected-height="150"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="150"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="150" data-expected-width="40" data-expected-height="150"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'space-between'</p>
|
| + <div class="grid justifyContentSpaceBetween verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'space-around'</p>
|
| + <div class="grid justifyContentSpaceAround verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="40" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="240" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="40" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="240" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'space-evenly'</p>
|
| + <div class="grid justifyContentSpaceEvenly verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="60" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="220" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="60" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="220" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'stretch'</p>
|
| + <div class="grid stretchedGrid justifyContentStretch verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="200" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="100" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="200" data-expected-width="40" data-expected-height="100"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'space-between'</p>
|
| + <div class="grid justifyContentSpaceBetween verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="93" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="187" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowFourthColumn" data-offset-x="0" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="93" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="187" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFourthColumn" data-offset-x="40" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'space-around'</p>
|
| + <div class="grid justifyContentSpaceAround verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="28" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="103" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="178" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowFourthColumn" data-offset-x="0" data-offset-y="253" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="28" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="103" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="178" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFourthColumn" data-offset-x="40" data-offset-y="253" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'space-evenly'</p>
|
| + <div class="grid justifyContentSpaceEvenly verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="44" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="108" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="172" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowFourthColumn" data-offset-x="0" data-offset-y="236" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="44" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="108" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="172" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFourthColumn" data-offset-x="40" data-offset-y="236" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: LTR | justify-content: 'stretch'</p>
|
| + <div class="grid stretchedGrid justifyContentStretch verticalLR" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="75" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="150" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="firstRowFourthColumn" data-offset-x="0" data-offset-y="225" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="75" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="150" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="secondRowFourthColumn" data-offset-x="40" data-offset-y="225" data-expected-width="40" data-expected-height="75"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<!-- RTL direction. -->
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'space-between'</p>
|
| + <div class="grid justifyContentSpaceBetween verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'space-around'</p>
|
| + <div class="grid justifyContentSpaceAround verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="215" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="65" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="215" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="65" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'space-evenly'</p>
|
| + <div class="grid justifyContentSpaceEvenly verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="193" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="87" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="193" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="87" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'stretch'</p>
|
| + <div class="grid stretchedGrid justifyContentStretch verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="150" data-expected-width="40" data-expected-height="150"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="150"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="150" data-expected-width="40" data-expected-height="150"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="150"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'space-between'</p>
|
| + <div class="grid justifyContentSpaceBetween verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'space-around'</p>
|
| + <div class="grid justifyContentSpaceAround verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="240" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="40" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="240" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="40" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'space-evenly'</p>
|
| + <div class="grid justifyContentSpaceEvenly verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="220" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="60" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="220" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="140" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="60" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'stretch'</p>
|
| + <div class="grid stretchedGrid justifyContentStretch verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="200" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="100" data-expected-width="40" data-expected-height="100"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="100"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'space-between'</p>
|
| + <div class="grid justifyContentSpaceBetween verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="187" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="93" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowFourthColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="280" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="187" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="93" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFourthColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'space-around'</p>
|
| + <div class="grid justifyContentSpaceAround verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="253" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="178" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="103" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowFourthColumn" data-offset-x="0" data-offset-y="28" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="253" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="178" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="103" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFourthColumn" data-offset-x="40" data-offset-y="28" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'space-evenly'</p>
|
| + <div class="grid justifyContentSpaceEvenly verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="236" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="172" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="108" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="firstRowFourthColumn" data-offset-x="0" data-offset-y="44" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="236" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="172" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="108" data-expected-width="40" data-expected-height="20"></div>
|
| + <div class="secondRowFourthColumn" data-offset-x="40" data-offset-y="44" data-expected-width="40" data-expected-height="20"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="position: relative">
|
| + <p>direction: RTL | justify-content: 'stretch'</p>
|
| + <div class="grid stretchedGrid justifyContentStretch verticalLR directionRTL" data-expected-width="400" data-expected-height="300">
|
| + <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="225" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="150" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="firstRowThirdColumn" data-offset-x="0" data-offset-y="75" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="firstRowFourthColumn" data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="secondRowFirstColumn" data-offset-x="40" data-offset-y="225" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="secondRowSecondColumn" data-offset-x="40" data-offset-y="150" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="secondRowThirdColumn" data-offset-x="40" data-offset-y="75" data-expected-width="40" data-expected-height="75"></div>
|
| + <div class="secondRowFourthColumn" data-offset-x="40" data-offset-y="0" data-expected-width="40" data-expected-height="75"></div>
|
| + </div>
|
| +</div>
|
| +</body>
|
| +</html>
|
|
|