| <!DOCTYPE html> |
| <html> |
| <head> |
| <link href="resources/grid.css" rel="stylesheet"> |
| <link href="resources/grid-alignment.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; |
| } |
| |
| </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> |