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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/text/input-delete.html

Issue 2270663002: Selection API of INPUT/TEXTAREA should not update FrameSelection without focusing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust more tests Created 4 years, 4 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: third_party/WebKit/LayoutTests/fast/forms/text/input-delete.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/text/input-delete.html b/third_party/WebKit/LayoutTests/fast/forms/text/input-delete.html
index 63724fec08462429de7dc6d995a9dd58ba78a92f..88ef3a2a7785fda09e19cfc551bb019e958cbd58 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/text/input-delete.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/text/input-delete.html
@@ -7,6 +7,7 @@ function test() {
testRunner.dumpAsText();
}
document.getElementById('tf').setSelectionRange(5, 11);
+ document.getElementById('tf').focus();
deleteCommand();
if (document.getElementById('tf').value == "Test Failed") {
document.getElementById('res').innerHTML = "Failed";

Powered by Google App Engine
This is Rietveld 408576698