OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <pre id="mainThreadScrollingReasons"></pre> |
2 <style> | 3 <style> |
3 body { | 4 .composited-background-attachment-fixed { |
4 height: 1000px; | 5 height: 1000px; |
5 background: url('grid.png') fixed; | 6 background: url('grid.png') fixed; |
| 7 will-change: transform; |
6 } | 8 } |
7 </style> | 9 </style> |
| 10 |
| 11 <div class="composited-background-attachment-fixed"> |
| 12 </div> |
| 13 |
| 14 <script> |
| 15 if (window.testRunner) |
| 16 testRunner.dumpAsText(true); |
| 17 window.addEventListener('load', function() { |
| 18 document.getElementById("mainThreadScrollingReasons").innerText = window.int
ernals.mainThreadScrollingReasons(document); |
| 19 }); |
| 20 </script> |
OLD | NEW |