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

Unified Diff: LayoutTests/editing/input/reveal-caret-of-transformed-input-scrollable-parent.html

Issue 12087062: Revert 141139 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/editing/input/reveal-caret-of-transformed-input-scrollable-parent-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/editing/input/reveal-caret-of-transformed-input-scrollable-parent.html
===================================================================
--- LayoutTests/editing/input/reveal-caret-of-transformed-input-scrollable-parent.html (revision 141156)
+++ LayoutTests/editing/input/reveal-caret-of-transformed-input-scrollable-parent.html (working copy)
@@ -1,30 +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>
-<div style="overflow:auto; height:150px; width:300px">
-<textarea name="textarea" id="textarea" rows="10" cols="10"
- style="-webkit-transform:translate(110px, 110px) scale(2); height:200px"></textarea>
-<div style="height:1000px"></div>
-</div>
-<script>
-
-var textArea = document.getElementById("textarea");
-textArea.textContent = generateNumbers(0, 500, 2, "\n");
-textArea.focus();
-textArea.selectionStart = 1200;
-if (window.eventSender) {
- eventSender.keyDown(">");
- // If the parentNode's scrollTop is greater than 500, then the textarea
- // isn't even visible.
- document.body.innerHTML = textarea.parentNode.scrollTop < 600 ? "PASS" : "FAIL";
-}
-
-if (window.testRunner) {
- testRunner.dumpAsText();
-}
-
-</script>
-</body>
« no previous file with comments | « no previous file | LayoutTests/editing/input/reveal-caret-of-transformed-input-scrollable-parent-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698