| 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"> |
| 6 <link href="resources/grid-alignment.css" rel="stylesheet"> |
| 5 <script src="../../resources/check-layout.js"></script> | 7 <script src="../../resources/check-layout.js"></script> |
| 6 <style> | 8 <style> |
| 7 body { | 9 body { |
| 8 margin: 0; | 10 margin: 0; |
| 9 } | 11 } |
| 10 | 12 |
| 11 .grid { | 13 .grid { |
| 12 grid-template-columns: 100px 100px; | 14 grid-template-columns: 100px 100px; |
| 13 grid-template-rows: 200px 200px; | 15 grid-template-rows: 200px 200px; |
| 14 width: -webkit-fit-content; | |
| 15 margin-bottom: 20px; | 16 margin-bottom: 20px; |
| 16 } | 17 } |
| 17 | 18 |
| 18 .widthAndHeightSet { | 19 .widthAndHeightSet { |
| 19 width: 20px; | 20 width: 20px; |
| 20 height: 40px; | 21 height: 40px; |
| 21 } | 22 } |
| 22 | 23 .onlyWidthSet { width: 20px; } |
| 23 .onlyWidthSet { | 24 .onlyHeightSet { height: 40px; } |
| 24 width: 20px; | 25 .maxHeight { max-height: 160px; } |
| 25 } | 26 .maxWidth { max-width: 90px; } |
| 26 | 27 .minWidth { min-width: 120px; } |
| 27 .onlyHeightSet { | 28 .minHeight { min-height: 220px; } |
| 28 height: 40px; | |
| 29 } | |
| 30 | |
| 31 .maxHeight { | |
| 32 max-height: 160px; | |
| 33 } | |
| 34 | |
| 35 .maxWidth { | |
| 36 max-width: 90px; | |
| 37 } | |
| 38 | |
| 39 .minWidth { | |
| 40 min-width: 120px; | |
| 41 } | |
| 42 | |
| 43 .minHeight { | |
| 44 min-height: 220px; | |
| 45 } | |
| 46 | |
| 47 .alignItemsAuto { | |
| 48 align-items: auto; | |
| 49 } | |
| 50 | |
| 51 .alignItemsStretch { | |
| 52 align-items: stretch; | |
| 53 } | |
| 54 | |
| 55 .alignItemsStart { | |
| 56 align-items: start; | |
| 57 } | |
| 58 | |
| 59 .alignSelfAuto { | |
| 60 align-self: auto; | |
| 61 } | |
| 62 | |
| 63 .alignSelfStretch { | |
| 64 align-self: stretch; | |
| 65 } | |
| 66 | |
| 67 .alignSelfStart { | |
| 68 align-self: start; | |
| 69 } | |
| 70 | |
| 71 .justifyItemsAuto { | |
| 72 justify-items: auto; | |
| 73 } | |
| 74 | |
| 75 .justifyItemsStretch { | |
| 76 justify-items: stretch; | |
| 77 } | |
| 78 | |
| 79 .justifyItemsStart { | |
| 80 justify-items: start; | |
| 81 } | |
| 82 | |
| 83 .justifySelfAuto { | |
| 84 justify-self: auto; | |
| 85 } | |
| 86 | |
| 87 .justifySelfStretch { | |
| 88 justify-self: stretch; | |
| 89 } | |
| 90 | |
| 91 .justifySelfStart { | |
| 92 justify-self: start; | |
| 93 } | |
| 94 </style> | 29 </style> |
| 95 </head> | 30 </head> |
| 96 <body onload="checkLayout('.grid')"> | 31 <body onload="checkLayout('.grid')"> |
| 97 | 32 |
| 98 <p>This test checks that the 'stretch' value is applied correctly for 'align' an
d 'justify' properties.</p> | 33 <p>This test checks that the 'stretch' value is applied correctly for 'align' an
d 'justify' properties.</p> |
| 99 | 34 |
| 100 <div style="position: relative"> | 35 <div style="position: relative"> |
| 101 <div class="grid" data-expected-width="200" data-expected-height="400"> | 36 <div class="grid fit-content" data-expected-width="200" data-expected-height
="400"> |
| 102 <div class="alignSelfStretch justifySelfStart firstRowFirstColumn" data-
offset-x="0" data-offset-y="0" data-expected-width="0" data-expected-height="200
"></div> | 37 <div class="alignSelfStretch justifySelfStart firstRowFirstColumn" data-
offset-x="0" data-offset-y="0" data-expected-width="0" data-expected-height="200
"></div> |
| 103 <div class="widthAndHeightSet alignSelfStretch justifySelfStart firstRow
SecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" dat
a-expected-height="40"></div> | 38 <div class="widthAndHeightSet alignSelfStretch justifySelfStart firstRow
SecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" dat
a-expected-height="40"></div> |
| 104 <div class="onlyWidthSet alignSelfStretch justifySelfStart secondRowFirs
tColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-exp
ected-height="200"></div> | 39 <div class="onlyWidthSet alignSelfStretch justifySelfStart secondRowFirs
tColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-exp
ected-height="200"></div> |
| 105 <div class="onlyHeightSet alignSelfStretch justifySelfStart secondRowSec
ondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="0" data-
expected-height="40"></div> | 40 <div class="onlyHeightSet alignSelfStretch justifySelfStart secondRowSec
ondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="0" data-
expected-height="40"></div> |
| 106 </div> | 41 </div> |
| 107 </div> | 42 </div> |
| 108 | 43 |
| 109 <div style="position: relative"> | 44 <div style="position: relative"> |
| 110 <div class="grid" data-expected-width="200" data-expected-height="400"> | 45 <div class="grid fit-content" data-expected-width="200" data-expected-height
="400"> |
| 111 <div class="alignSelfStart justifySelfStretch firstRowFirstColumn" data-
offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="0
"></div> | 46 <div class="alignSelfStart justifySelfStretch firstRowFirstColumn" data-
offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="0
"></div> |
| 112 <div class="widthAndHeightSet alignSelfStart justifySelfStretch firstRow
SecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" dat
a-expected-height="40"></div> | 47 <div class="widthAndHeightSet alignSelfStart justifySelfStretch firstRow
SecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" dat
a-expected-height="40"></div> |
| 113 <div class="onlyWidthSet alignSelfStart justifySelfStretch secondRowFirs
tColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-exp
ected-height="0"></div> | 48 <div class="onlyWidthSet alignSelfStart justifySelfStretch secondRowFirs
tColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-exp
ected-height="0"></div> |
| 114 <div class="onlyHeightSet alignSelfStart justifySelfStretch secondRowSec
ondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="100" dat
a-expected-height="40"></div> | 49 <div class="onlyHeightSet alignSelfStart justifySelfStretch secondRowSec
ondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="100" dat
a-expected-height="40"></div> |
| 115 </div> | 50 </div> |
| 116 </div> | 51 </div> |
| 117 | 52 |
| 118 <div style="position: relative"> | 53 <div style="position: relative"> |
| 119 <div class="grid" data-expected-width="200" data-expected-height="400"> | 54 <div class="grid fit-content" data-expected-width="200" data-expected-height
="400"> |
| 120 <div class="maxHeight alignSelfStretch justifySelfStart firstRowFirstCol
umn" data-offset-x="0" data-offset-y="0" data-expected-width="0" data-expected-h
eight="160"></div> | 55 <div class="maxHeight alignSelfStretch justifySelfStart firstRowFirstCol
umn" data-offset-x="0" data-offset-y="0" data-expected-width="0" data-expected-h
eight="160"></div> |
| 121 <div class="minWidth widthAndHeightSet alignSelfStretch justifySelfStart
firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width
="120" data-expected-height="40"></div> | 56 <div class="minWidth widthAndHeightSet alignSelfStretch justifySelfStart
firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width
="120" data-expected-height="40"></div> |
| 122 <div class="minHeight onlyWidthSet alignSelfStretch justifySelfStart sec
ondRowFirstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20
" data-expected-height="220"></div> | 57 <div class="minHeight onlyWidthSet alignSelfStretch justifySelfStart sec
ondRowFirstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20
" data-expected-height="220"></div> |
| 123 <div class="maxWidth onlyHeightSet alignSelfStretch justifySelfStretch s
econdRowSecondColumn" data-offset-x="100" data-offset-y="200" data-expected-widt
h="90" data-expected-height="40"></div> | 58 <div class="maxWidth onlyHeightSet alignSelfStretch justifySelfStretch s
econdRowSecondColumn" data-offset-x="100" data-offset-y="200" data-expected-widt
h="90" data-expected-height="40"></div> |
| 124 </div> | 59 </div> |
| 125 </div> | 60 </div> |
| 126 | 61 |
| 127 <div style="position: relative"> | 62 <div style="position: relative"> |
| 128 <div class="grid" data-expected-width="200" data-expected-height="400"> | 63 <div class="grid fit-content" data-expected-width="200" data-expected-height
="400"> |
| 129 <div class="alignSelfStretch justifySelfStretch firstRowFirstColumn" dat
a-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height=
"200"></div> | 64 <div class="alignSelfStretch justifySelfStretch firstRowFirstColumn" dat
a-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height=
"200"></div> |
| 130 <div class="widthAndHeightSet alignSelfStretch justifySelfStretch firstR
owSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" d
ata-expected-height="40"></div> | 65 <div class="widthAndHeightSet alignSelfStretch justifySelfStretch firstR
owSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" d
ata-expected-height="40"></div> |
| 131 <div class="onlyWidthSet alignSelfStretch justifySelfStretch secondRowFi
rstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-e
xpected-height="200"></div> | 66 <div class="onlyWidthSet alignSelfStretch justifySelfStretch secondRowFi
rstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-e
xpected-height="200"></div> |
| 132 <div class="onlyHeightSet alignSelfStretch justifySelfStretch secondRowS
econdColumn" data-offset-x="100" data-offset-y="200" data-expected-width="100" d
ata-expected-height="40"></div> | 67 <div class="onlyHeightSet alignSelfStretch justifySelfStretch secondRowS
econdColumn" data-offset-x="100" data-offset-y="200" data-expected-width="100" d
ata-expected-height="40"></div> |
| 133 </div> | 68 </div> |
| 134 </div> | 69 </div> |
| 135 | 70 |
| 136 <div style="position: relative"> | 71 <div style="position: relative"> |
| 137 <div class="grid alignItemsStretch justifyItemsStart" data-expected-width="2
00" data-expected-height="400"> | 72 <div class="grid fit-content alignItemsStretch justifyItemsStart" data-expec
ted-width="200" data-expected-height="400"> |
| 138 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="0" data-expected-height="200"></div> | 73 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="0" data-expected-height="200"></div> |
| 139 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> | 74 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> |
| 140 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="200"></div> | 75 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="200"></div> |
| 141 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="0" data-expected-height="40"></div> | 76 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="0" data-expected-height="40"></div> |
| 142 </div> | 77 </div> |
| 143 </div> | 78 </div> |
| 144 | 79 |
| 145 <div style="position: relative"> | 80 <div style="position: relative"> |
| 146 <div class="grid alignItemsStart justifyItemsStretch" data-expected-width="2
00" data-expected-height="400"> | 81 <div class="grid fit-content alignItemsStart justifyItemsStretch" data-expec
ted-width="200" data-expected-height="400"> |
| 147 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="0"></div> | 82 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="0"></div> |
| 148 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> | 83 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> |
| 149 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="0"></div> | 84 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="0"></div> |
| 150 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> | 85 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> |
| 151 </div> | 86 </div> |
| 152 </div> | 87 </div> |
| 153 | 88 |
| 154 <div style="position: relative"> | 89 <div style="position: relative"> |
| 155 <div class="grid alignItemsStretch justifyItemsStretch" data-expected-width=
"200" data-expected-height="400"> | 90 <div class="grid fit-content alignItemsStretch justifyItemsStretch" data-exp
ected-width="200" data-expected-height="400"> |
| 156 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="200"></div> | 91 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="200"></div> |
| 157 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> | 92 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> |
| 158 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="200"></div> | 93 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="200"></div> |
| 159 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> | 94 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> |
| 160 </div> | 95 </div> |
| 161 </div> | 96 </div> |
| 162 | 97 |
| 163 <div style="position: relative"> | 98 <div style="position: relative"> |
| 164 <div class="grid alignItemsAuto justifyItemsAuto" data-expected-width="200"
data-expected-height="400"> | 99 <div class="grid fit-content alignItemsAuto justifyItemsAuto" data-expected-
width="200" data-expected-height="400"> |
| 165 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="200"></div> | 100 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="200"></div> |
| 166 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> | 101 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> |
| 167 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="200"></div> | 102 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="200"></div> |
| 168 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> | 103 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> |
| 169 </div> | 104 </div> |
| 170 </div> | 105 </div> |
| 171 | 106 |
| 172 <div style="position: relative"> | 107 <div style="position: relative"> |
| 173 <div class="grid" data-expected-width="200" data-expected-height="400"> | 108 <div class="grid fit-content" data-expected-width="200" data-expected-height
="400"> |
| 174 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="200"></div> | 109 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="200"></div> |
| 175 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> | 110 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100"
data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> |
| 176 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="200"></div> | 111 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of
fset-y="200" data-expected-width="20" data-expected-height="200"></div> |
| 177 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> | 112 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat
a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> |
| 178 </div> | 113 </div> |
| 179 </div> | 114 </div> |
| 180 | 115 |
| 181 <div style="position: relative"> | 116 <div style="position: relative"> |
| 182 <div class="grid" data-expected-width="200" data-expected-height="400"> | 117 <div class="grid fit-content" data-expected-width="200" data-expected-height
="400"> |
| 183 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="200"></div> | 118 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="100" data-expected-height="200"></div> |
| 184 <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="0"
data-expected-width="100" data-expected-height="200"></div> | 119 <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="0"
data-expected-width="100" data-expected-height="200"></div> |
| 185 <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="200"
data-expected-width="100" data-expected-height="200"></div> | 120 <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="200"
data-expected-width="100" data-expected-height="200"></div> |
| 186 <div class="secondRowSecondColumn" data-offset-x="100" data-offset-y="20
0" data-expected-width="100" data-expected-height="200"></div> | 121 <div class="secondRowSecondColumn" data-offset-x="100" data-offset-y="20
0" data-expected-width="100" data-expected-height="200"></div> |
| 187 </div> | 122 </div> |
| 188 </div> | 123 </div> |
| 189 | 124 |
| 190 <!-- RTL direction (it should not affect the block-flow direction). --> | 125 <!-- RTL direction (it should not affect the block-flow direction). --> |
| 191 <div style="position: relative"> | 126 <div style="position: relative"> |
| 192 <div class="grid directionRTL alignItemsStretch justifyItemsStretch" data-ex
pected-width="200" data-expected-height="400"> | 127 <div class="grid fit-content directionRTL alignItemsStretch justifyItemsStre
tch" data-expected-width="200" data-expected-height="400"> |
| 193 <div class="firstRowFirstColumn" data-offset-x="100" data-offset-y="0" d
ata-expected-width="100" data-expected-height="200"></div> | 128 <div class="firstRowFirstColumn" data-offset-x="100" data-offset-y="0" d
ata-expected-width="100" data-expected-height="200"></div> |
| 194 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="80" d
ata-offset-y="0" data-expected-width="20" data-expected-height="40"></div> | 129 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="80" d
ata-offset-y="0" data-expected-width="20" data-expected-height="40"></div> |
| 195 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="180" data-
offset-y="200" data-expected-width="20" data-expected-height="200"></div> | 130 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="180" data-
offset-y="200" data-expected-width="20" data-expected-height="200"></div> |
| 196 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="0" data-
offset-y="200" data-expected-width="100" data-expected-height="40"></div> | 131 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="0" data-
offset-y="200" data-expected-width="100" data-expected-height="40"></div> |
| 197 </div> | 132 </div> |
| 198 </div> | 133 </div> |
| 199 | 134 |
| 200 <!-- RTL direction (it should not affect the block-flow) with opposite direction
s grid container vs grid item. --> | 135 <!-- RTL direction (it should not affect the block-flow) with opposite direction
s grid container vs grid item. --> |
| 201 <div style="position: relative"> | 136 <div style="position: relative"> |
| 202 <div class="grid alignItemsStretch justifyItemsStretch" data-expected-width=
"200" data-expected-height="400"> | 137 <div class="grid fit-content alignItemsStretch justifyItemsStretch" data-exp
ected-width="200" data-expected-height="400"> |
| 203 <div class="firstRowFirstColumn directionRTL" data-offset-x="0" data-of
fset-y="0" data-expected-width="100" data-expected-height="200"></div> | 138 <div class="firstRowFirstColumn directionRTL" data-offset-x="0" data-of
fset-y="0" data-expected-width="100" data-expected-height="200"></div> |
| 204 <div class="widthAndHeightSet firstRowSecondColumn directionRTL" data-o
ffset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="4
0"></div> | 139 <div class="widthAndHeightSet firstRowSecondColumn directionRTL" data-o
ffset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="4
0"></div> |
| 205 <div class="onlyWidthSet secondRowFirstColumn directionRTL" data-offset
-x="0" data-offset-y="200" data-expected-width="20" data-expected-height="200"><
/div> | 140 <div class="onlyWidthSet secondRowFirstColumn directionRTL" data-offset
-x="0" data-offset-y="200" data-expected-width="20" data-expected-height="200"><
/div> |
| 206 <div class="onlyHeightSet secondRowSecondColumn directionRTL" data-offs
et-x="100" data-offset-y="200" data-expected-width="100" data-expected-height="4
0"></div> | 141 <div class="onlyHeightSet secondRowSecondColumn directionRTL" data-offs
et-x="100" data-offset-y="200" data-expected-width="100" data-expected-height="4
0"></div> |
| 207 </div> | 142 </div> |
| 208 </div> | 143 </div> |
| 209 | 144 |
| 210 <!-- Vertical RL writing mode. --> | 145 <!-- Vertical RL writing mode. --> |
| 211 <div style="position: relative"> | 146 <div style="position: relative"> |
| 212 <div class="grid verticalRL alignItemsStretch justifyItemsStretch" data-expe
cted-width="400" data-expected-height="200"> | 147 <div class="grid fit-content verticalRL alignItemsStretch justifyItemsStretc
h" data-expected-width="400" data-expected-height="200"> |
| 213 <div class="firstRowFirstColumn" data-offset-x="200" data-offset-y="0" d
ata-expected-width="200" data-expected-height="100"></div> | 148 <div class="firstRowFirstColumn" data-offset-x="200" data-offset-y="0" d
ata-expected-width="200" data-expected-height="100"></div> |
| 214 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="380"
data-offset-y="100" data-expected-width="20" data-expected-height="40"></div> | 149 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="380"
data-offset-y="100" data-expected-width="20" data-expected-height="40"></div> |
| 215 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="180" data-
offset-y="0" data-expected-width="20" data-expected-height="100"></div> | 150 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="180" data-
offset-y="0" data-expected-width="20" data-expected-height="100"></div> |
| 216 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="0" data-
offset-y="100" data-expected-width="200" data-expected-height="40"></div> | 151 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="0" data-
offset-y="100" data-expected-width="200" data-expected-height="40"></div> |
| 217 </div> | 152 </div> |
| 218 </div> | 153 </div> |
| 219 | 154 |
| 220 <div style="position: relative"> | 155 <div style="position: relative"> |
| 221 <div class="grid verticalRL" data-expected-width="400" data-expected-height=
"200"> | 156 <div class="grid fit-content verticalRL" data-expected-width="400" data-expe
cted-height="200"> |
| 222 <div class="firstRowFirstColumn" data-offset-x="200" data-offset-y="0" d
ata-expected-width="200" data-expected-height="100"></div> | 157 <div class="firstRowFirstColumn" data-offset-x="200" data-offset-y="0" d
ata-expected-width="200" data-expected-height="100"></div> |
| 223 <div class="firstRowSecondColumn" data-offset-x="200" data-offset-y="100
" data-expected-width="200" data-expected-height="100"></div> | 158 <div class="firstRowSecondColumn" data-offset-x="200" data-offset-y="100
" data-expected-width="200" data-expected-height="100"></div> |
| 224 <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="0" da
ta-expected-width="200" data-expected-height="100"></div> | 159 <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="0" da
ta-expected-width="200" data-expected-height="100"></div> |
| 225 <div class="secondRowSecondColumn" data-offset-x="0" data-offset-y="100"
data-expected-width="200" data-expected-height="100"></div> | 160 <div class="secondRowSecondColumn" data-offset-x="0" data-offset-y="100"
data-expected-width="200" data-expected-height="100"></div> |
| 226 </div> | 161 </div> |
| 227 </div> | 162 </div> |
| 228 | 163 |
| 229 <!-- Vertical LR writing mode. --> | 164 <!-- Vertical LR writing mode. --> |
| 230 <div style="position: relative"> | 165 <div style="position: relative"> |
| 231 <div class="grid verticalLR alignItemsStretch justifyItemsStretch" data-expe
cted-width="400" data-expected-height="200"> | 166 <div class="grid fit-content verticalLR alignItemsStretch justifyItemsStretc
h" data-expected-width="400" data-expected-height="200"> |
| 232 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="200" data-expected-height="100"></div> | 167 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="200" data-expected-height="100"></div> |
| 233 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="0" da
ta-offset-y="100" data-expected-width="20" data-expected-height="40"></div> | 168 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="0" da
ta-offset-y="100" data-expected-width="20" data-expected-height="40"></div> |
| 234 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="200" data-
offset-y="0" data-expected-width="20" data-expected-height="100"></div> | 169 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="200" data-
offset-y="0" data-expected-width="20" data-expected-height="100"></div> |
| 235 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="200" dat
a-offset-y="100" data-expected-width="200" data-expected-height="40"></div> | 170 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="200" dat
a-offset-y="100" data-expected-width="200" data-expected-height="40"></div> |
| 236 </div> | 171 </div> |
| 237 </div> | 172 </div> |
| 238 | 173 |
| 239 <div style="position: relative"> | 174 <div style="position: relative"> |
| 240 <div class="grid verticalLR" data-expected-width="400" data-expected-height=
"200"> | 175 <div class="grid fit-content verticalLR" data-expected-width="400" data-expe
cted-height="200"> |
| 241 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="200" data-expected-height="100"></div> | 176 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat
a-expected-width="200" data-expected-height="100"></div> |
| 242 <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="100"
data-expected-width="200" data-expected-height="100"></div> | 177 <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="100"
data-expected-width="200" data-expected-height="100"></div> |
| 243 <div class="secondRowFirstColumn" data-offset-x="200" data-offset-y="0"
data-expected-width="200" data-expected-height="100"></div> | 178 <div class="secondRowFirstColumn" data-offset-x="200" data-offset-y="0"
data-expected-width="200" data-expected-height="100"></div> |
| 244 <div class="secondRowSecondColumn" data-offset-x="200" data-offset-y="10
0" data-expected-width="200" data-expected-height="100"></div> | 179 <div class="secondRowSecondColumn" data-offset-x="200" data-offset-y="10
0" data-expected-width="200" data-expected-height="100"></div> |
| 245 </div> | 180 </div> |
| 246 </div> | 181 </div> |
| 247 | 182 |
| 248 </body> | 183 </body> |
| 249 </html> | 184 </html> |
| OLD | NEW |