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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/textarea-scrolled-type.html

Issue 1524663002: Move textarea-related tests to fast/forms/textarea/, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: third_party/WebKit/LayoutTests/fast/forms/textarea-scrolled-type.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-scrolled-type.html b/third_party/WebKit/LayoutTests/fast/forms/textarea-scrolled-type.html
deleted file mode 100644
index 90d8a3914507d45a7a8095ce0ccccf340a3142f6..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/textarea-scrolled-type.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<html>
-<head>
-<script src=../../editing/editing.js language="JavaScript" type="text/JavaScript" ></script>
-<script>
-function test()
-{
- var res = document.getElementById('res');
- var ta = document.getElementById('ta');
-
- // Send caret to bottom of textarea
- ta.focus();
- ta.setSelectionRange(ta.value.length, ta.value.length);
- ta.blur();
-
- ta.focus();
- ta.setSelectionRange(44, 44);
- typeCharacterCommand(' ');
- typeCharacterCommand('P');
- typeCharacterCommand('a');
- typeCharacterCommand('s');
- typeCharacterCommand('s');
-
-}
-</script>
-</head>
-<body onload="test()">
-This tests that typing in a scrolled textarea does not cause unnecessary scrolling.<br>
-<textarea id="ta" rows=7>
-1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-</textarea>
-<br>
-<div id="res"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698