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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/textarea-initial-caret-position.html

Issue 1522803002: Move textarea-related tests to fast/forms/textarea/, part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@color-uaf
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-initial-caret-position.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-initial-caret-position.html b/third_party/WebKit/LayoutTests/fast/forms/textarea-initial-caret-position.html
deleted file mode 100644
index 34d6202b7ad1bc7b996fe2253e0a87e29f3c3dad..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/textarea-initial-caret-position.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body>
-<div>
-<p>This tests the initial caret position for textareas.</p>
-<p>Bug 11746: REGRESSION(r14931): Outlook Web Access incorrectly positions the insertion point when replying to e-mail<br>
-<a href="http://bugs.webkit.org/show_bug.cgi?id=11746">http://bugs.webkit.org/show_bug.cgi?id=11746</a></p>
-</div>
-<div>
-<textarea id="ta" rows="5" cols="10">
-1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-</textarea>
-</div>
-<div id="console"></div>
-<script type="text/javascript">
- var ta = document.getElementById('ta');
- ta.focus();
- shouldBe('ta.selectionStart', '0');
- shouldBe('ta.selectionEnd', '0');
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698