| <!DOCTYPE html> | |
| <script> | |
| window.onload = function() { | |
| if (window.testRunner) | |
| window.testRunner.dumpAsText(); | |
| var element = document.getElementById("noOverflow"); | |
| element.scrollTo(10, 20); | |
| } | |
| </script> | |
| <div id="noOverflow"> | |
| This test passes if it doesn't crash. | |
| </div> |