| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 | 5 |
| 6 .composited { | 6 .composited { |
| 7 -webkit-transform:translatez(0); | 7 transform:translatez(0); |
| 8 } | 8 } |
| 9 | 9 |
| 10 .box { | 10 .box { |
| 11 width: 100px; | 11 width: 100px; |
| 12 height: 100px; | 12 height: 100px; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .green { | 15 .green { |
| 16 background-color: green; | 16 background-color: green; |
| 17 } | 17 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 <!-- This lime colored div should correctly detect overlap and become composit
ed. --> | 79 <!-- This lime colored div should correctly detect overlap and become composit
ed. --> |
| 80 <div class="lime box inmiddle"> </div> | 80 <div class="lime box inmiddle"> </div> |
| 81 | 81 |
| 82 <!-- The blue colord div should also correctly detect overlap on top of the se
cond layer. --> | 82 <!-- The blue colord div should also correctly detect overlap on top of the se
cond layer. --> |
| 83 <div class="blue box ontop"> </div> | 83 <div class="blue box ontop"> </div> |
| 84 | 84 |
| 85 <pre id="layertree"></pre> | 85 <pre id="layertree"></pre> |
| 86 </body> | 86 </body> |
| 87 | 87 |
| 88 </html> | 88 </html> |
| OLD | NEW |