| 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 transform: translateZ(0); | 6 transform: translateZ(0); |
| 7 } | 7 } |
| 8 | 8 |
| 9 .background { | 9 .background { |
| 10 position: fixed; | 10 position: fixed; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 #testResults { | 47 #testResults { |
| 48 display: none; | 48 display: none; |
| 49 } | 49 } |
| 50 | 50 |
| 51 body { | 51 body { |
| 52 margin: 0px; | 52 margin: 0px; |
| 53 } | 53 } |
| 54 </style> | 54 </style> |
| 55 | 55 |
| 56 <script> | |
| 57 if (window.internals) { | |
| 58 internals.settings.setLayerSquashingEnabled(false); | |
| 59 } | |
| 60 | |
| 61 </script> | |
| 62 </head> | 56 </head> |
| 63 | 57 |
| 64 <body> | 58 <body> |
| 65 | 59 |
| 66 <div id="description"> | 60 <div id="description"> |
| 67 <p>This scenario tests that content is rendered correctly when | 61 <p>This scenario tests that content is rendered correctly when |
| 68 squashing composited layer is at a non-integral position, and contains | 62 squashing composited layer is at a non-integral position, and contains |
| 69 render layers at both integral and non-integral positions.</p> | 63 render layers at both integral and non-integral positions.</p> |
| 70 </div> | 64 </div> |
| 71 | 65 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 82 <div id="paragraph-i" class="overlapping cyan"></div> | 76 <div id="paragraph-i" class="overlapping cyan"></div> |
| 83 <div id="paragraph-j" class="overlapping lime"></div> | 77 <div id="paragraph-j" class="overlapping lime"></div> |
| 84 <div id="paragraph-k" class="overlapping cyan"></div> | 78 <div id="paragraph-k" class="overlapping cyan"></div> |
| 85 <div id="paragraph-l" class="overlapping lime"></div> | 79 <div id="paragraph-l" class="overlapping lime"></div> |
| 86 <div id="paragraph-m" class="overlapping cyan"></div> | 80 <div id="paragraph-m" class="overlapping cyan"></div> |
| 87 <div id="paragraph-n" class="overlapping lime"></div> | 81 <div id="paragraph-n" class="overlapping lime"></div> |
| 88 | 82 |
| 89 </body> | 83 </body> |
| 90 | 84 |
| 91 </html> | 85 </html> |
| OLD | NEW |