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