| OLD | NEW |
| 1 <script> | 1 <script> |
| 2 onload = function() { | 2 onload = function() { |
| 3 document.getElementById('scroller').scrollTo(0, 200); | 3 document.getElementById('scroller').scrollTop = 200; |
| 4 } | 4 } |
| 5 </script> | 5 </script> |
| 6 <style> | 6 <style> |
| 7 #scroller { | 7 #scroller { |
| 8 background: gray local content-box; | 8 background: gray local content-box; |
| 9 border: 10px solid rgba(0, 255, 0, 0.5); | 9 border: 10px solid rgba(0, 255, 0, 0.5); |
| 10 overflow: scroll; | 10 overflow: scroll; |
| 11 padding: 10px; | 11 padding: 10px; |
| 12 width: 200px; | 12 width: 200px; |
| 13 height: 200px; | 13 height: 200px; |
| 14 } | 14 } |
| 15 | 15 |
| 16 .spacer { | 16 .spacer { |
| 17 height: 300px; | 17 height: 300px; |
| 18 } | 18 } |
| 19 </style> | 19 </style> |
| 20 <!-- #scroller has a locally attached background with padding so when it is | 20 <!-- #scroller has a locally attached background with padding so when it is |
| 21 scrolled we can see the background slide up. Doing this on a composited | 21 scrolled we can see the background slide up. Doing this on a composited |
| 22 element without repainting requires the background to be painted into | 22 element without repainting requires the background to be painted into |
| 23 the scrolling contents layer and correctly account for that layer not | 23 the scrolling contents layer and correctly account for that layer not |
| 24 including the border in its bounds. --> | 24 including the border in its bounds. --> |
| 25 <div id="scroller"> | 25 <div id="scroller"> |
| 26 <div class="spacer"></div> | 26 <div class="spacer"></div> |
| 27 </div> | 27 </div> |
| OLD | NEW |