| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <link href="../css-intrinsic-dimensions/resources/width-keyword-classes.css" rel
="stylesheet"> |
| 4 <link href="resources/grid.css" rel="stylesheet"> | 5 <link href="resources/grid.css" rel="stylesheet"> |
| 5 <link href="resources/grid-alignment.css" rel="stylesheet"> | 6 <link href="resources/grid-alignment.css" rel="stylesheet"> |
| 6 <script src="../../resources/check-layout.js"></script> | 7 <script src="../../resources/check-layout.js"></script> |
| 7 <style> | 8 <style> |
| 8 body { | 9 body { |
| 9 margin: 0; | 10 margin: 0; |
| 10 } | 11 } |
| 11 | 12 |
| 12 .grid { | 13 .grid { |
| 13 grid-template-columns: 100px 200px; | 14 grid-template-columns: 100px 200px; |
| 14 grid-template-rows: 200px 200px; | 15 grid-template-rows: 200px 200px; |
| 15 padding: 10px 15px 20px 30px; | 16 padding: 10px 15px 20px 30px; |
| 16 border-width: 5px 10px 15px 20px; | 17 border-width: 5px 10px 15px 20px; |
| 17 border-style: dotted; | 18 border-style: dotted; |
| 18 border-color: blue; | 19 border-color: blue; |
| 19 width: -webkit-fit-content; | |
| 20 position: relative; | 20 position: relative; |
| 21 } | 21 } |
| 22 | 22 |
| 23 .cell { | 23 .cell { |
| 24 width: 20px; | 24 width: 20px; |
| 25 height: 40px; | 25 height: 40px; |
| 26 margin: 4px 8px 12px 16px; | 26 margin: 4px 8px 12px 16px; |
| 27 } | 27 } |
| 28 | 28 |
| 29 .stretch { | 29 .stretch { |
| 30 align-self: stretch; | 30 align-self: stretch; |
| 31 justify-self: stretch; | 31 justify-self: stretch; |
| 32 } | 32 } |
| 33 | 33 |
| 34 </style> | 34 </style> |
| 35 </head> | 35 </head> |
| 36 <body onload="checkLayout('.grid')"> | 36 <body onload="checkLayout('.grid')"> |
| 37 | 37 |
| 38 <p>This test checks that the 'margin', 'border' and 'padding' properties are app
lied together correctly for 'align' and 'justify' properties on vertical-LR grid
s.</p> | 38 <p>This test checks that the 'margin', 'border' and 'padding' properties are app
lied together correctly for 'align' and 'justify' properties on vertical-LR grid
s.</p> |
| 39 | 39 |
| 40 <div> | 40 <div> |
| 41 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 41 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 42 direction: LTR | align-items: 'auto' | justify-items: 'auto'</p> | 42 direction: LTR | align-items: 'auto' | justify-items: 'auto'</p> |
| 43 <div class="grid verticalLR" data-expected-width="475" data-expected-height=
"350"> | 43 <div class="grid fit-content verticalLR" data-expected-width="475" data-expe
cted-height="350"> |
| 44 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offset-
y="14" data-expected-width="20" data-expected-height="40"></div> | 44 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offset-
y="14" data-expected-width="20" data-expected-height="40"></div> |
| 45 <div class="cell firstRowSecondColumn" data-offset-x="46" data-offset-
y="114" data-expected-width="20" data-expected-height="40"></div> | 45 <div class="cell firstRowSecondColumn" data-offset-x="46" data-offset-
y="114" data-expected-width="20" data-expected-height="40"></div> |
| 46 <div class="cell secondRowFirstColumn" data-offset-x="246" data-offset-
y="14" data-expected-width="20" data-expected-height="40"></div> | 46 <div class="cell secondRowFirstColumn" data-offset-x="246" data-offset-
y="14" data-expected-width="20" data-expected-height="40"></div> |
| 47 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offset-
y="114" data-expected-width="20" data-expected-height="40"></div> | 47 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offset-
y="114" data-expected-width="20" data-expected-height="40"></div> |
| 48 </div> | 48 </div> |
| 49 </div> | 49 </div> |
| 50 | 50 |
| 51 <div> | 51 <div> |
| 52 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 52 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 53 direction: LTR | align-items: 'center' | justify-items: 'center'</p> | 53 direction: LTR | align-items: 'center' | justify-items: 'center'</p> |
| 54 <div class="grid verticalLR itemsCenter" data-expected-width="475" data-expe
cted-height="350"> | 54 <div class="grid fit-content verticalLR itemsCenter" data-expected-width="47
5" data-expected-height="350"> |
| 55 <div class="firstRowFirstColumn cell" data-offset-x="124" data-offs
et-y="36" data-expected-width="20" data-expected-height="40"></div> | 55 <div class="firstRowFirstColumn cell" data-offset-x="124" data-offs
et-y="36" data-expected-width="20" data-expected-height="40"></div> |
| 56 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offs
et-y="110" data-expected-width="200" data-expected-height="200"></div> | 56 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offs
et-y="110" data-expected-width="200" data-expected-height="200"></div> |
| 57 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offs
et-y="10" data-expected-width="200" data-expected-height="100"></div> | 57 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offs
et-y="10" data-expected-width="200" data-expected-height="100"></div> |
| 58 <div class="cell secondRowSecondColumn" data-offset-x="324" data-offs
et-y="186" data-expected-width="20" data-expected-height="40"></div> | 58 <div class="cell secondRowSecondColumn" data-offset-x="324" data-offs
et-y="186" data-expected-width="20" data-expected-height="40"></div> |
| 59 </div> | 59 </div> |
| 60 </div> | 60 </div> |
| 61 | 61 |
| 62 <div> | 62 <div> |
| 63 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 63 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 64 direction: LTR | align-items: 'end' | justify-items: 'end'</p> | 64 direction: LTR | align-items: 'end' | justify-items: 'end'</p> |
| 65 <div class="grid verticalLR itemsEnd" data-expected-width="475" data-expecte
d-height="350"> | 65 <div class="grid fit-content verticalLR itemsEnd" data-expected-width="475"
data-expected-height="350"> |
| 66 <div class="cell firstRowFirstColumn" data-offset-x="202" data-offse
t-y="58" data-expected-width="20" data-expected-height="40"></div> | 66 <div class="cell firstRowFirstColumn" data-offset-x="202" data-offse
t-y="58" data-expected-width="20" data-expected-height="40"></div> |
| 67 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="110" data-expected-width="200" data-expected-height="200"></div> | 67 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="110" data-expected-width="200" data-expected-height="200"></div> |
| 68 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="10" data-expected-width="200" data-expected-height="100"></div> | 68 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="10" data-expected-width="200" data-expected-height="100"></div> |
| 69 <div class="cell secondRowSecondColumn" data-offset-x="402" data-offse
t-y="258" data-expected-width="20" data-expected-height="40"></div> | 69 <div class="cell secondRowSecondColumn" data-offset-x="402" data-offse
t-y="258" data-expected-width="20" data-expected-height="40"></div> |
| 70 </div> | 70 </div> |
| 71 </div> | 71 </div> |
| 72 | 72 |
| 73 <div> | 73 <div> |
| 74 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 74 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 75 direction: LTR | align-items: 'left' | justify-items: 'left'</p> | 75 direction: LTR | align-items: 'left' | justify-items: 'left'</p> |
| 76 <div class="grid verticalLR itemsLeft" data-expected-width="475" data-expect
ed-height="350"> | 76 <div class="grid fit-content verticalLR itemsLeft" data-expected-width="475"
data-expected-height="350"> |
| 77 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offse
t-y="14" data-expected-width="20" data-expected-height="40"></div> | 77 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offse
t-y="14" data-expected-width="20" data-expected-height="40"></div> |
| 78 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="110" data-expected-width="200" data-expected-height="200"></div> | 78 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="110" data-expected-width="200" data-expected-height="200"></div> |
| 79 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="10" data-expected-width="200" data-expected-height="100"></div> | 79 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="10" data-expected-width="200" data-expected-height="100"></div> |
| 80 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offse
t-y="114" data-expected-width="20" data-expected-height="40"></div> | 80 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offse
t-y="114" data-expected-width="20" data-expected-height="40"></div> |
| 81 </div> | 81 </div> |
| 82 </div> | 82 </div> |
| 83 | 83 |
| 84 <div> | 84 <div> |
| 85 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 85 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 86 direction: LTR | align-items: 'right' | justify-items: 'right'</p> | 86 direction: LTR | align-items: 'right' | justify-items: 'right'</p> |
| 87 <div class="grid verticalLR itemsRight" data-expected-width="475" data-expec
ted-height="350"> | 87 <div class="grid fit-content verticalLR itemsRight" data-expected-width="475
" data-expected-height="350"> |
| 88 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offse
t-y="58" data-expected-width="20" data-expected-height="40"></div> | 88 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offse
t-y="58" data-expected-width="20" data-expected-height="40"></div> |
| 89 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="110" data-expected-width="200" data-expected-height="200"></div> | 89 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="110" data-expected-width="200" data-expected-height="200"></div> |
| 90 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="10" data-expected-width="200" data-expected-height="100"></div> | 90 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="10" data-expected-width="200" data-expected-height="100"></div> |
| 91 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offse
t-y="258" data-expected-width="20" data-expected-height="40"></div> | 91 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offse
t-y="258" data-expected-width="20" data-expected-height="40"></div> |
| 92 </div> | 92 </div> |
| 93 </div> | 93 </div> |
| 94 | 94 |
| 95 <div> | 95 <div> |
| 96 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 96 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 97 direction: LTR (ortho) | align-items: 'self-start' | justify-items: 'sel
f-start'</p> | 97 direction: LTR (ortho) | align-items: 'self-start' | justify-items: 'sel
f-start'</p> |
| 98 <div class="grid directionLTR verticalLR itemsSelfStart" data-expected-width
="475" data-expected-height="350"> | 98 <div class="grid fit-content directionLTR verticalLR itemsSelfStart" data-ex
pected-width="475" data-expected-height="350"> |
| 99 <div class="directionRTL cell firstRowFirstColumn" data-offset-x="46
" data-offset-y="58" data-expected-width="20" data-expected-height="40"></div> | 99 <div class="directionRTL cell firstRowFirstColumn" data-offset-x="46
" data-offset-y="58" data-expected-width="20" data-expected-height="40"></div> |
| 100 <div class="directionRTL stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="110" data-expected-width="200" data-expected-height="200"></di
v> | 100 <div class="directionRTL stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="110" data-expected-width="200" data-expected-height="200"></di
v> |
| 101 <div class="directionRTL stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="10" data-expected-width="200" data-expected-height="100"></di
v> | 101 <div class="directionRTL stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="10" data-expected-width="200" data-expected-height="100"></di
v> |
| 102 <div class="directionRTL cell secondRowSecondColumn" data-offset-x="24
6" data-offset-y="258" data-expected-width="20" data-expected-height="40"></div
> | 102 <div class="directionRTL cell secondRowSecondColumn" data-offset-x="24
6" data-offset-y="258" data-expected-width="20" data-expected-height="40"></div
> |
| 103 </div> | 103 </div> |
| 104 </div> | 104 </div> |
| 105 | 105 |
| 106 <div> | 106 <div> |
| 107 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 107 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 108 direction: LTR (ortho) | align-items: 'self-end' | justify-items: 'self-
end'</p> | 108 direction: LTR (ortho) | align-items: 'self-end' | justify-items: 'self-
end'</p> |
| 109 <div class="grid directionLTR verticalLR itemsSelfEnd" data-expected-width="
475" data-expected-height="350"> | 109 <div class="grid fit-content directionLTR verticalLR itemsSelfEnd" data-expe
cted-width="475" data-expected-height="350"> |
| 110 <div class="directionRTL cell firstRowFirstColumn" data-offset-x="20
2" data-offset-y="14" data-expected-width="20" data-expected-height="40"></div
> | 110 <div class="directionRTL cell firstRowFirstColumn" data-offset-x="20
2" data-offset-y="14" data-expected-width="20" data-expected-height="40"></div
> |
| 111 <div class="directionRTL stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="110" data-expected-width="200" data-expected-height="200"></di
v> | 111 <div class="directionRTL stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="110" data-expected-width="200" data-expected-height="200"></di
v> |
| 112 <div class="directionRTL stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="10" data-expected-width="200" data-expected-height="100"></di
v> | 112 <div class="directionRTL stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="10" data-expected-width="200" data-expected-height="100"></di
v> |
| 113 <div class="directionRTL cell secondRowSecondColumn" data-offset-x="40
2" data-offset-y="114" data-expected-width="20" data-expected-height="40"></div
> | 113 <div class="directionRTL cell secondRowSecondColumn" data-offset-x="40
2" data-offset-y="114" data-expected-width="20" data-expected-height="40"></div
> |
| 114 </div> | 114 </div> |
| 115 </div> | 115 </div> |
| 116 | 116 |
| 117 <div> | 117 <div> |
| 118 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 118 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 119 direction: LTR (parall) | align-items: 'self-start' | justify-items: 'se
lf-start'</p> | 119 direction: LTR (parall) | align-items: 'self-start' | justify-items: 'se
lf-start'</p> |
| 120 <div class="grid directionLTR verticalLR itemsSelfStart" data-expected-width
="475" data-expected-height="350"> | 120 <div class="grid fit-content directionLTR verticalLR itemsSelfStart" data-ex
pected-width="475" data-expected-height="350"> |
| 121 <div class="directionLTR cell firstRowFirstColumn" data-offset-x="46
" data-offset-y="14" data-expected-width="20" data-expected-height="40"></div> | 121 <div class="directionLTR cell firstRowFirstColumn" data-offset-x="46
" data-offset-y="14" data-expected-width="20" data-expected-height="40"></div> |
| 122 <div class="directionLTR stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="110" data-expected-width="200" data-expected-height="200"></di
v> | 122 <div class="directionLTR stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="110" data-expected-width="200" data-expected-height="200"></di
v> |
| 123 <div class="directionLTR stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="10" data-expected-width="200" data-expected-height="100"></di
v> | 123 <div class="directionLTR stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="10" data-expected-width="200" data-expected-height="100"></di
v> |
| 124 <div class="directionLTR cell secondRowSecondColumn" data-offset-x="24
6" data-offset-y="114" data-expected-width="20" data-expected-height="40"></div
> | 124 <div class="directionLTR cell secondRowSecondColumn" data-offset-x="24
6" data-offset-y="114" data-expected-width="20" data-expected-height="40"></div
> |
| 125 </div> | 125 </div> |
| 126 </div> | 126 </div> |
| 127 | 127 |
| 128 <div> | 128 <div> |
| 129 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 129 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 130 direction: LTR (parall) | align-items: 'self-end' | justify-items: 'self
-end'</p> | 130 direction: LTR (parall) | align-items: 'self-end' | justify-items: 'self
-end'</p> |
| 131 <div class="grid directionLTR verticalLR itemsSelfEnd" data-expected-width="
475" data-expected-height="350"> | 131 <div class="grid fit-content directionLTR verticalLR itemsSelfEnd" data-expe
cted-width="475" data-expected-height="350"> |
| 132 <div class="directionLTR cell firstRowFirstColumn" data-offset-x="20
2" data-offset-y="58" data-expected-width="20" data-expected-height="40"></div
> | 132 <div class="directionLTR cell firstRowFirstColumn" data-offset-x="20
2" data-offset-y="58" data-expected-width="20" data-expected-height="40"></div
> |
| 133 <div class="directionLTR stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="110" data-expected-width="200" data-expected-height="200"></di
v> | 133 <div class="directionLTR stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="110" data-expected-width="200" data-expected-height="200"></di
v> |
| 134 <div class="directionLTR stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="10" data-expected-width="200" data-expected-height="100"></di
v> | 134 <div class="directionLTR stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="10" data-expected-width="200" data-expected-height="100"></di
v> |
| 135 <div class="directionLTR cell secondRowSecondColumn" data-offset-x="40
2" data-offset-y="258" data-expected-width="20" data-expected-height="40"></div
> | 135 <div class="directionLTR cell secondRowSecondColumn" data-offset-x="40
2" data-offset-y="258" data-expected-width="20" data-expected-height="40"></div
> |
| 136 </div> | 136 </div> |
| 137 </div> | 137 </div> |
| 138 | 138 |
| 139 <!-- RTL direction. --> | 139 <!-- RTL direction. --> |
| 140 <div> | 140 <div> |
| 141 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 141 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 142 direction: RTL | align-items: 'auto' | justify-items: 'auto'</p> | 142 direction: RTL | align-items: 'auto' | justify-items: 'auto'</p> |
| 143 <div class="grid verticalLR directionRTL" data-expected-width="475" data-exp
ected-height="350"> | 143 <div class="grid fit-content verticalLR directionRTL" data-expected-width="4
75" data-expected-height="350"> |
| 144 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offset-
y="258" data-expected-width="20" data-expected-height="40"></div> | 144 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offset-
y="258" data-expected-width="20" data-expected-height="40"></div> |
| 145 <div class="cell firstRowSecondColumn" data-offset-x="46" data-offset-
y="158" data-expected-width="20" data-expected-height="40"></div> | 145 <div class="cell firstRowSecondColumn" data-offset-x="46" data-offset-
y="158" data-expected-width="20" data-expected-height="40"></div> |
| 146 <div class="cell secondRowFirstColumn" data-offset-x="246" data-offset-
y="258" data-expected-width="20" data-expected-height="40"></div> | 146 <div class="cell secondRowFirstColumn" data-offset-x="246" data-offset-
y="258" data-expected-width="20" data-expected-height="40"></div> |
| 147 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offset-
y="158" data-expected-width="20" data-expected-height="40"></div> | 147 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offset-
y="158" data-expected-width="20" data-expected-height="40"></div> |
| 148 </div> | 148 </div> |
| 149 </div> | 149 </div> |
| 150 | 150 |
| 151 <div> | 151 <div> |
| 152 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 152 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 153 direction: RTL | align-items: 'center' | justify-items: 'center'</p> | 153 direction: RTL | align-items: 'center' | justify-items: 'center'</p> |
| 154 <div class="grid verticalLR directionRTL itemsCenter" data-expected-width="4
75" data-expected-height="350"> | 154 <div class="grid fit-content verticalLR directionRTL itemsCenter" data-expec
ted-width="475" data-expected-height="350"> |
| 155 <div class="cell firstRowFirstColumn" data-offset-x="124" data-offse
t-y="236" data-expected-width="20" data-expected-height="40"></div> | 155 <div class="cell firstRowFirstColumn" data-offset-x="124" data-offse
t-y="236" data-expected-width="20" data-expected-height="40"></div> |
| 156 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="10" data-expected-width="200" data-expected-height="200"></div> | 156 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="10" data-expected-width="200" data-expected-height="200"></div> |
| 157 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="210" data-expected-width="200" data-expected-height="100"></div> | 157 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="210" data-expected-width="200" data-expected-height="100"></div> |
| 158 <div class="cell secondRowSecondColumn" data-offset-x="324" data-offse
t-y="86" data-expected-width="20" data-expected-height="40"></div> | 158 <div class="cell secondRowSecondColumn" data-offset-x="324" data-offse
t-y="86" data-expected-width="20" data-expected-height="40"></div> |
| 159 </div> | 159 </div> |
| 160 </div> | 160 </div> |
| 161 | 161 |
| 162 <div> | 162 <div> |
| 163 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 163 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 164 direction: RTL | align-items: 'end' | justify-items: 'end'</p> | 164 direction: RTL | align-items: 'end' | justify-items: 'end'</p> |
| 165 <div class="grid verticalLR directionRTL itemsEnd" data-expected-width
="475" data-expected-height="350"> | 165 <div class="grid fit-content verticalLR directionRTL itemsEnd" data-ex
pected-width="475" data-expected-height="350"> |
| 166 <div class="cell firstRowFirstColumn" data-offset-x="202" data-offse
t-y="214" data-expected-width="20" data-expected-height="40"></div> | 166 <div class="cell firstRowFirstColumn" data-offset-x="202" data-offse
t-y="214" data-expected-width="20" data-expected-height="40"></div> |
| 167 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="10" data-expected-width="200" data-expected-height="200"></div> | 167 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="10" data-expected-width="200" data-expected-height="200"></div> |
| 168 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="210" data-expected-width="200" data-expected-height="100"></div> | 168 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="210" data-expected-width="200" data-expected-height="100"></div> |
| 169 <div class="cell secondRowSecondColumn" data-offset-x="402" data-offse
t-y="14" data-expected-width="20" data-expected-height="40"></div> | 169 <div class="cell secondRowSecondColumn" data-offset-x="402" data-offse
t-y="14" data-expected-width="20" data-expected-height="40"></div> |
| 170 </div> | 170 </div> |
| 171 </div> | 171 </div> |
| 172 | 172 |
| 173 <div> | 173 <div> |
| 174 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 174 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 175 direction: RTL | align-items: 'left' | justify-items: 'left'</p> | 175 direction: RTL | align-items: 'left' | justify-items: 'left'</p> |
| 176 <div class="grid verticalLR directionRTL itemsLeft" data-expected-width
="475" data-expected-height="350"> | 176 <div class="grid fit-content verticalLR directionRTL itemsLeft" data-ex
pected-width="475" data-expected-height="350"> |
| 177 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offse
t-y="214" data-expected-width="20" data-expected-height="40"></div> | 177 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offse
t-y="214" data-expected-width="20" data-expected-height="40"></div> |
| 178 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="10" data-expected-width="200" data-expected-height="200"></div> | 178 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="10" data-expected-width="200" data-expected-height="200"></div> |
| 179 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="210" data-expected-width="200" data-expected-height="100"></div> | 179 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="210" data-expected-width="200" data-expected-height="100"></div> |
| 180 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offse
t-y="14" data-expected-width="20" data-expected-height="40"></div> | 180 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offse
t-y="14" data-expected-width="20" data-expected-height="40"></div> |
| 181 </div> | 181 </div> |
| 182 </div> | 182 </div> |
| 183 | 183 |
| 184 <div> | 184 <div> |
| 185 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 185 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 186 direction: RTL | align-items: 'right' | justify-items: 'right'</p> | 186 direction: RTL | align-items: 'right' | justify-items: 'right'</p> |
| 187 <div class="grid verticalLR directionRTL itemsRight" data-expected-width
="475" data-expected-height="350"> | 187 <div class="grid fit-content verticalLR directionRTL itemsRight" data-ex
pected-width="475" data-expected-height="350"> |
| 188 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offse
t-y="258" data-expected-width="20" data-expected-height="40"></div> | 188 <div class="cell firstRowFirstColumn" data-offset-x="46" data-offse
t-y="258" data-expected-width="20" data-expected-height="40"></div> |
| 189 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="10" data-expected-width="200" data-expected-height="200"></div> | 189 <div class="stretch firstRowSecondColumn" data-offset-x="30" data-offse
t-y="10" data-expected-width="200" data-expected-height="200"></div> |
| 190 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="210" data-expected-width="200" data-expected-height="100"></div> | 190 <div class="stretch secondRowFirstColumn" data-offset-x="230" data-offse
t-y="210" data-expected-width="200" data-expected-height="100"></div> |
| 191 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offse
t-y="158" data-expected-width="20" data-expected-height="40"></div> | 191 <div class="cell secondRowSecondColumn" data-offset-x="246" data-offse
t-y="158" data-expected-width="20" data-expected-height="40"></div> |
| 192 </div> | 192 </div> |
| 193 </div> | 193 </div> |
| 194 | 194 |
| 195 <div> | 195 <div> |
| 196 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 196 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 197 direction: RTL (ortho) | align-items: 'self-start' | justify-items: 'sel
f-start'</p> | 197 direction: RTL (ortho) | align-items: 'self-start' | justify-items: 'sel
f-start'</p> |
| 198 <div class="grid verticalLR directionRTL itemsSelfStart" data-expected-width
="475" data-expected-height="350"> | 198 <div class="grid fit-content verticalLR directionRTL itemsSelfStart" data-ex
pected-width="475" data-expected-height="350"> |
| 199 <div class="directionLTR cell firstRowFirstColumn" data-offset-x="46
" data-offset-y="214" data-expected-width="20" data-expected-height="40"></div
> | 199 <div class="directionLTR cell firstRowFirstColumn" data-offset-x="46
" data-offset-y="214" data-expected-width="20" data-expected-height="40"></div
> |
| 200 <div class="directionLTR stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="10" data-expected-width="200" data-expected-height="200"></di
v> | 200 <div class="directionLTR stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="10" data-expected-width="200" data-expected-height="200"></di
v> |
| 201 <div class="directionLTR stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="210" data-expected-width="200" data-expected-height="100"></di
v> | 201 <div class="directionLTR stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="210" data-expected-width="200" data-expected-height="100"></di
v> |
| 202 <div class="directionLTR cell secondRowSecondColumn" data-offset-x="24
6" data-offset-y="14" data-expected-width="20" data-expected-height="40"></div
> | 202 <div class="directionLTR cell secondRowSecondColumn" data-offset-x="24
6" data-offset-y="14" data-expected-width="20" data-expected-height="40"></div
> |
| 203 </div> | 203 </div> |
| 204 </div> | 204 </div> |
| 205 | 205 |
| 206 <div> | 206 <div> |
| 207 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 207 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 208 direction: RTL (ortho) | align-items: 'self-end' | justify-items: 'self-
end'</p> | 208 direction: RTL (ortho) | align-items: 'self-end' | justify-items: 'self-
end'</p> |
| 209 <div class="grid verticalLR directionRTL itemsSelfEnd" data-expected-width="
475" data-expected-height="350"> | 209 <div class="grid fit-content verticalLR directionRTL itemsSelfEnd" data-expe
cted-width="475" data-expected-height="350"> |
| 210 <div class="directionLTR cell firstRowFirstColumn" data-offset-x="20
2" data-offset-y="258" data-expected-width="20" data-expected-height="40"></div
> | 210 <div class="directionLTR cell firstRowFirstColumn" data-offset-x="20
2" data-offset-y="258" data-expected-width="20" data-expected-height="40"></div
> |
| 211 <div class="directionLTR stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="10" data-expected-width="200" data-expected-height="200"></di
v> | 211 <div class="directionLTR stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="10" data-expected-width="200" data-expected-height="200"></di
v> |
| 212 <div class="directionLTR stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="210" data-expected-width="200" data-expected-height="100"></di
v> | 212 <div class="directionLTR stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="210" data-expected-width="200" data-expected-height="100"></di
v> |
| 213 <div class="directionLTR cell secondRowSecondColumn" data-offset-x="40
2" data-offset-y="158" data-expected-width="20" data-expected-height="40"></div
> | 213 <div class="directionLTR cell secondRowSecondColumn" data-offset-x="40
2" data-offset-y="158" data-expected-width="20" data-expected-height="40"></div
> |
| 214 </div> | 214 </div> |
| 215 </div> | 215 </div> |
| 216 | 216 |
| 217 <div> | 217 <div> |
| 218 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 218 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 219 direction: RTL (parall) | align-items: 'self-start' | justify-items: 'se
lf-start'</p> | 219 direction: RTL (parall) | align-items: 'self-start' | justify-items: 'se
lf-start'</p> |
| 220 <div class="grid verticalLR directionRTL itemsSelfStart" data-expected-width
="475" data-expected-height="350"> | 220 <div class="grid fit-content verticalLR directionRTL itemsSelfStart" data-ex
pected-width="475" data-expected-height="350"> |
| 221 <div class="directionRTL cell firstRowFirstColumn" data-offset-x="46
" data-offset-y="258" data-expected-width="20" data-expected-height="40"></div
> | 221 <div class="directionRTL cell firstRowFirstColumn" data-offset-x="46
" data-offset-y="258" data-expected-width="20" data-expected-height="40"></div
> |
| 222 <div class="directionRTL stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="10" data-expected-width="200" data-expected-height="200"></di
v> | 222 <div class="directionRTL stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="10" data-expected-width="200" data-expected-height="200"></di
v> |
| 223 <div class="directionRTL stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="210" data-expected-width="200" data-expected-height="100"></di
v> | 223 <div class="directionRTL stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="210" data-expected-width="200" data-expected-height="100"></di
v> |
| 224 <div class="directionRTL cell secondRowSecondColumn" data-offset-x="24
6" data-offset-y="158" data-expected-width="20" data-expected-height="40"></di
v> | 224 <div class="directionRTL cell secondRowSecondColumn" data-offset-x="24
6" data-offset-y="158" data-expected-width="20" data-expected-height="40"></di
v> |
| 225 </div> | 225 </div> |
| 226 </div> | 226 </div> |
| 227 | 227 |
| 228 <div> | 228 <div> |
| 229 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> | 229 <p>border: 5px 10px 15px 20px | padding: 10px 15px 20px 30px | margin: 4px 8
px 12px 16px<br> |
| 230 direction: RTL (parall) | align-items: 'self-end' | justify-items: 'self
-end'</p> | 230 direction: RTL (parall) | align-items: 'self-end' | justify-items: 'self
-end'</p> |
| 231 <div class="grid verticalLR directionRTL itemsSelfEnd" data-expected-width="
475" data-expected-height="350"> | 231 <div class="grid fit-content verticalLR directionRTL itemsSelfEnd" data-expe
cted-width="475" data-expected-height="350"> |
| 232 <div class="directionRTL cell firstRowFirstColumn" data-offset-x="20
2" data-offset-y="214" data-expected-width="20" data-expected-height="40"></div
> | 232 <div class="directionRTL cell firstRowFirstColumn" data-offset-x="20
2" data-offset-y="214" data-expected-width="20" data-expected-height="40"></div
> |
| 233 <div class="directionRTL stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="10" data-expected-width="200" data-expected-height="200"></di
v> | 233 <div class="directionRTL stretch firstRowSecondColumn" data-offset-x="30
" data-offset-y="10" data-expected-width="200" data-expected-height="200"></di
v> |
| 234 <div class="directionRTL stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="210" data-expected-width="200" data-expected-height="100"></di
v> | 234 <div class="directionRTL stretch secondRowFirstColumn" data-offset-x="23
0" data-offset-y="210" data-expected-width="200" data-expected-height="100"></di
v> |
| 235 <div class="directionRTL cell secondRowSecondColumn" data-offset-x="40
2" data-offset-y="14" data-expected-width="20" data-expected-height="40"></div> | 235 <div class="directionRTL cell secondRowSecondColumn" data-offset-x="40
2" data-offset-y="14" data-expected-width="20" data-expected-height="40"></div> |
| 236 </div> | 236 </div> |
| 237 </div> | 237 </div> |
| 238 | 238 |
| 239 </body> | 239 </body> |
| 240 </html> | 240 </html> |
| OLD | NEW |