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

Unified Diff: LayoutTests/fast/forms/number/number-keyoperation.html

Issue 218683010: Using alt and down key to open datalist using keyboard (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated as per code review commnets Created 6 years, 9 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/fast/forms/number/number-keyoperation-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/forms/number/number-keyoperation.html
diff --git a/LayoutTests/fast/forms/number/number-keyoperation.html b/LayoutTests/fast/forms/number/number-keyoperation.html
index 619b7d07b7d3a66239ca0fd1e2413feda1b68d3d..359b9537b121e5671ce5d4791090b42201baa2a2 100644
--- a/LayoutTests/fast/forms/number/number-keyoperation.html
+++ b/LayoutTests/fast/forms/number/number-keyoperation.html
@@ -25,6 +25,10 @@ debug('Press the down arrow key:');
eventSender.keyDown('downArrow');
shouldBe('input.value', '"123"');
+debug('Press the down and alt arrow key, should not decrement value:');
+eventSender.keyDown('downArrow', ['altKey']);
+shouldBeEqualToString('input.value', '123');
+
debug('Disable input element:');
input.disabled = true;
eventSender.keyDown('upArrow');
« no previous file with comments | « no previous file | LayoutTests/fast/forms/number/number-keyoperation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698