| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../resources/js-test.js"></script> | 2 <script src="../../resources/js-test.js"></script> |
| 3 <script src="../../resources/run-after-layout-and-paint.js"></script> | 3 <script src="../../resources/run-after-layout-and-paint.js"></script> |
| 4 <style> | 4 <style> |
| 5 #anchor { | 5 #anchor { |
| 6 display: none; | 6 display: none; |
| 7 position: absolute; | 7 position: absolute; |
| 8 width: 60px; | 8 width: 60px; |
| 9 height: 30px; | 9 height: 30px; |
| 10 background-color: #eee; | 10 background-color: #eee; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 }); | 38 }); |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 onload = function() { | 41 onload = function() { |
| 42 runAfterLayoutAndPaint(function() { | 42 runAfterLayoutAndPaint(function() { |
| 43 location.hash = "#foo"; | 43 location.hash = "#foo"; |
| 44 }); | 44 }); |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 </script> | 47 </script> |
| OLD | NEW |