OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <style> | 5 <style> |
6 .fixed { | 6 .fixed { |
7 position: fixed; | 7 position: fixed; |
8 width: 50px; | 8 width: 50px; |
9 height: 50px; | 9 height: 50px; |
10 top: 10px; | 10 top: 10px; |
(...skipping 17 matching lines...) Loading... |
28 </head> | 28 </head> |
29 | 29 |
30 <body> | 30 <body> |
31 <div style="height: 1000px"> | 31 <div style="height: 1000px"> |
32 Main thread scrolling reasons should be blank: | 32 Main thread scrolling reasons should be blank: |
33 <pre id="mainThreadScrollingReasons"></pre> | 33 <pre id="mainThreadScrollingReasons"></pre> |
34 </div> | 34 </div> |
35 <div class="fixed"></div> | 35 <div class="fixed"></div> |
36 </body> | 36 </body> |
37 </html> | 37 </html> |
OLD | NEW |