| OLD | NEW |
| 1 <html style="overflow: -webkit-paged-x;"> | 1 <html style="overflow: -webkit-paged-x;"> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 if (window.testRunner) | 4 if (window.testRunner) |
| 5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
| 6 </script> | 6 </script> |
| 7 <style> | 7 <style> |
| 8 .spacer { | 8 .spacer { |
| 9 height: 350px; | 9 height: 350px; |
| 10 width: 100%; | 10 width: 100%; |
| 11 margin: 10px; | 11 margin: 10px; |
| 12 background-color: silver; | 12 background-color: silver; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .box { | 15 .box { |
| 16 height: 100px; | 16 height: 100px; |
| 17 width: 100px; | 17 width: 100px; |
| 18 margin: 10px; | 18 margin: 10px; |
| 19 background-color: blue; | 19 background-color: blue; |
| 20 } | 20 } |
| 21 .composited { | 21 .composited { |
| 22 -webkit-transform: translateZ(0); | 22 transform: translateZ(0); |
| 23 } | 23 } |
| 24 </style> | 24 </style> |
| 25 </head> | 25 </head> |
| 26 <body> | 26 <body> |
| 27 | 27 |
| 28 <p>This test should not assert.</p> | 28 <p>This test should not assert.</p> |
| 29 <div class="spacer"></div> | 29 <div class="spacer"></div> |
| 30 <div class="spacer"></div> | 30 <div class="spacer"></div> |
| 31 <div class="composited box"></div> | 31 <div class="composited box"></div> |
| 32 | 32 |
| 33 | 33 |
| 34 </body> | 34 </body> |
| 35 </html> | 35 </html> |
| OLD | NEW |