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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/input-readonly-select.html

Issue 2145323002: Content in disabled input field should not be selectable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated code for WebViewTest.LongPressImageTextArea test failure Created 4 years, 5 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/input-readonly-select.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/input-readonly-select.html b/third_party/WebKit/LayoutTests/fast/forms/input-readonly-select.html
index 1515e8f757e920ad1ed8eb7f0c6032acd28a93c3..3dfb6a8bb384e94aa576702f85b06e2f4ba39b06 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/input-readonly-select.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/input-readonly-select.html
@@ -65,7 +65,7 @@ debug('');
debug('double clicking on disabled input');
doubleClickOn(disabledInput);
-shouldBeTrue('selectEventFiredOnDisabledInput');
+shouldBeFalse('selectEventFiredOnDisabledInput');
debug('');
debug('double clicking on normal textarea');
@@ -80,7 +80,7 @@ debug('');
debug('double clicking on disabled textarea');
doubleClickOn(disabledTextarea);
-shouldBeTrue('selectEventFiredOnDisabledTextarea');
+shouldBeFalse('selectEventFiredOnDisabledTextarea');
debug('');
container.innerHTML = "";

Powered by Google App Engine
This is Rietveld 408576698