OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 div { | 5 div { |
6 position: absolute; | 6 position: absolute; |
7 z-index: 1; | 7 z-index: 1; |
8 width: 100px; | 8 width: 100px; |
9 height: 100px; | 9 height: 100px; |
10 } | 10 } |
11 | 11 |
12 .composited { | 12 .composited { |
13 -webkit-transform: translatez(0); | 13 transform: translatez(0); |
14 top: 60px; | 14 top: 60px; |
15 left: 60px; | 15 left: 60px; |
16 width: 400px; | 16 width: 400px; |
17 height: 400px; | 17 height: 400px; |
18 background-color: gray; | 18 background-color: gray; |
19 } | 19 } |
20 | 20 |
21 .overlap1 { | 21 .overlap1 { |
22 top: 140px; | 22 top: 140px; |
23 left: 140px; | 23 left: 140px; |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 CASE 5, overlap2 gets added back: | 184 CASE 5, overlap2 gets added back: |
185 <pre id="Case5"></pre> | 185 <pre id="Case5"></pre> |
186 | 186 |
187 CASE 6, overlap1 gets added back, and overlap3 gets removed: | 187 CASE 6, overlap1 gets added back, and overlap3 gets removed: |
188 <pre id="Case6"></pre> | 188 <pre id="Case6"></pre> |
189 </div> | 189 </div> |
190 | 190 |
191 </body> | 191 </body> |
192 | 192 |
193 </html> | 193 </html> |
OLD | NEW |