| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="resources/text-based-repaint.js"></script> | 4 <script src="resources/repaint.js"></script> |
| 5 <style> | 5 <style> |
| 6 | 6 |
| 7 #scroller { | 7 #scroller { |
| 8 position: absolute; | 8 position: absolute; |
| 9 left: 10px; | 9 left: 10px; |
| 10 top: 60px; | 10 top: 60px; |
| 11 height: 400px; | 11 height: 400px; |
| 12 overflow: scroll; | 12 overflow: scroll; |
| 13 width: 300px; | 13 width: 300px; |
| 14 will-change: transform; | 14 will-change: transform; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 function repaintTest() | 39 function repaintTest() |
| 40 { | 40 { |
| 41 document.querySelector("#block").style.top = '310px'; | 41 document.querySelector("#block").style.top = '310px'; |
| 42 document.querySelector("#scroller").scrollTop = 150; | 42 document.querySelector("#scroller").scrollTop = 150; |
| 43 } | 43 } |
| 44 | 44 |
| 45 </script> | 45 </script> |
| 46 </body> | 46 </body> |
| 47 </html> | 47 </html> |
| OLD | NEW |