Chromium Code Reviews

Unified Diff: LayoutTests/editing/input/reveal-caret-of-multiline-input.html

Issue 9965112: Revert 103073 - Scroll non-visible edit controls and caret into the center of the view when startin… (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: LayoutTests/editing/input/reveal-caret-of-multiline-input.html
===================================================================
--- LayoutTests/editing/input/reveal-caret-of-multiline-input.html (revision 113050)
+++ LayoutTests/editing/input/reveal-caret-of-multiline-input.html (working copy)
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<head>
-<script type="text/javascript" src="resources/reveal-utilities.js"></script>
-</head>
-<body>
-<div>When the caret is scrolled out, on starting typing it must be brought to the center of the control.</div>
-<textarea name="textarea" id="textarea" rows="10" cols="10"></textarea>
-<script>
-
-var textArea = document.getElementById("textarea");
-textArea.textContent = generateNumbers(0, 30, 2, "\n");
-textArea.focus();
-textArea.selectionStart = 36;
-if (window.eventSender)
- eventSender.keyDown(">");
-
-</script>
-</body>

Powered by Google App Engine