Index: LayoutTests/fast/layers/scroll-overflow-no-layer.html |
diff --git a/LayoutTests/fast/layers/scrollByLines-overflow-no-layer.html b/LayoutTests/fast/layers/scroll-overflow-no-layer.html |
similarity index 78% |
rename from LayoutTests/fast/layers/scrollByLines-overflow-no-layer.html |
rename to LayoutTests/fast/layers/scroll-overflow-no-layer.html |
index 6e4b4c5f7aa33b750f04e3e82e4b19e5c6e375c9..6d97f87c98a5f29553d881428cd6cc1f8cd28d17 100644 |
--- a/LayoutTests/fast/layers/scrollByLines-overflow-no-layer.html |
+++ b/LayoutTests/fast/layers/scroll-overflow-no-layer.html |
@@ -12,14 +12,13 @@ |
if (window.testRunner) |
testRunner.dumpAsText(); |
- function testScrollByLine() |
+ function testScroll() |
{ |
var overflowDiv = document.getElementById("overflow"); |
- overflowDiv.scrollByLines(10); |
- overflowDiv.scrollByPages(10); |
+ overflowDiv.scrollTop = 100; |
overflowDiv.innerHTML = "PASSED: The test did not crash!"; |
} |
- window.addEventListener("load", testScrollByLine, false); |
+ window.addEventListener("load", testScroll, false); |
</script> |
</head> |
<body> |