Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(704)

Unified Diff: LayoutTests/fast/layers/scrollByLines-overflow-no-layer.html

Issue 416403013: Remove Element.scrollByLines() and Element.scrollByPages() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/layers/scrollByLines-overflow-no-layer.html
diff --git a/LayoutTests/fast/layers/scrollByLines-overflow-no-layer.html b/LayoutTests/fast/layers/scrollByLines-overflow-no-layer.html
deleted file mode 100644
index 6e4b4c5f7aa33b750f04e3e82e4b19e5c6e375c9..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/layers/scrollByLines-overflow-no-layer.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE>
-<html>
-<head>
-<style>
- #overflow {
- height: 100px;
- width: 100px;
- overflow: hidden;
- }
-</style>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function testScrollByLine()
- {
- var overflowDiv = document.getElementById("overflow");
- overflowDiv.scrollByLines(10);
- overflowDiv.scrollByPages(10);
- overflowDiv.innerHTML = "PASSED: The test did not crash!";
- }
- window.addEventListener("load", testScrollByLine, false);
-</script>
-</head>
-<body>
- <div><a href="https://bugs.webkit.org/show_bug.cgi?id=83728">bug 83728</a>: Reduce the use of RenderLayer outside of the rendering code</div>
- <div>This test passes if you see PASSED below.</div>
- <div id="overflow">FAILED</div>
-<body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698