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

Unified Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-keyboard-events.html

Issue 11548050: Merge 137152 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1312/
Patch Set: Created 8 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: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-keyboard-events.html
===================================================================
--- LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-keyboard-events.html (revision 137542)
+++ LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-keyboard-events.html (working copy)
@@ -168,13 +168,13 @@
// lang-attribute-aware-form-control-UI feature.
input.setAttribute("lang", "he-il");
beginTest('RTL Left/Right keys', '04:56');
-keyDown('1'); // -> 56:[01]
+keyDown('1'); // -> [01]:56
shouldBeEqualToString('input.value', '01:56');
-keyDown('leftArrow'); // -> [56]:01
-keyDown('2'); // -> [02]:01
+keyDown('rightArrow'); // -> 01:[56]
+keyDown('2'); // -> 01:[02]
shouldBeEqualToString('input.value', '01:02');
-keyDown('rightArrow'); // -> 02:[01]
-keyDown('3'); // -> 01:[03]
+keyDown('leftArrow'); // -> [01]:02
+keyDown('3'); // -> [03]:02
shouldBeEqualToString('input.value', '03:02');
input.removeAttribute("lang");
</script>

Powered by Google App Engine
This is Rietveld 408576698