| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 .composited { | 5 .composited { |
| 6 -webkit-transform: translateZ(0); | 6 -webkit-transform: translateZ(0); |
| 7 } | 7 } |
| 8 | 8 |
| 9 .outer { | 9 .outer { |
| 10 position: absolute; | 10 position: absolute; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 <body> | 31 <body> |
| 32 <!-- Still let outer layer composited to avoid the minor edge pixel diffs. --> | 32 <!-- Still let outer layer composited to avoid the minor edge pixel diffs. --> |
| 33 <div class="composited outer"> | 33 <div class="composited outer"> |
| 34 <div class="outlined"> | 34 <div class="outlined"> |
| 35 <div class="inner"></div> | 35 <div class="inner"></div> |
| 36 </div> | 36 </div> |
| 37 </div> | 37 </div> |
| 38 </body> | 38 </body> |
| 39 </html> | 39 </html> |
| 40 | 40 |
| OLD | NEW |