Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <a href='#'>anchor</a> | 2 <a href='#'>anchor</a> |
| 3 <a id='dummy' href='dummy'>dummy</a> | 3 <a id='dummy' href='dummy'>dummy</a> |
| 4 <div style='width:10px;height:2000px;background:white'></div> | 4 <div style='width:10px;height:2000px;background:white'></div> |
| 5 <script> | 5 <script> |
| 6 onload = function() { | 6 onload = function() { |
| 7 location.href = '#'; | 7 location.href = '#'; |
| 8 requestAnimationFrame(function() { | 8 requestAnimationFrame(function() { |
| 9 document.getElementById('dummy').focus(); | 9 document.getElementById('dummy').focus(); |
| 10 }); | 10 }); |
| 11 } | 11 } |
| 12 </script> | 12 </script> |
| OLD | NEW |