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

Side by Side Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-keyboard-events-expected.txt

Issue 11150011: Merge 130848 - Sub-fields in input[type=time] should not be focusable if the input is disabled or r… (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1271/
Patch Set: Created 8 years, 2 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 unified diff | Download patch
OLDNEW
1 Multiple fields UI of time input type with keyboard events 1 Multiple fields UI of time input type with keyboard events
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Please run this with DumpRenderTree. 6 Please run this with DumpRenderTree.
7 7
8 Test following keys: 8 Test following keys:
9 Digit keys 9 Digit keys
10 Left/Right - Move focus field inside element 10 Left/Right - Move focus field inside element
11 Up/Down - Increment/decrement value of focus field 11 Up/Down - Increment/decrement value of focus field
12 Tab - Move focus field 12 Tab - Move focus field
13 Backspace - Make value empty 13 Backspace - Make value empty
14 14
15 == Digit keys == 15 == Digit keys ==
16 PASS input.value is "07:56" 16 PASS input.value is "07:56"
17 == Left/Right keys == 17 == Left/Right keys ==
18 PASS input.value is "06:05" 18 PASS input.value is "06:05"
19 PASS document.activeElement.id is "input" 19 PASS document.activeElement.id is "input"
20 == Up/Down keys == 20 == Up/Down keys ==
21 PASS input.value is "05:56" 21 PASS input.value is "05:56"
22 PASS input.value is "03:56" 22 PASS input.value is "03:56"
23 == Up/Down keys on empty value == 23 == Up/Down keys on empty value ==
24 PASS input.value is "14:58" 24 PASS input.value is "14:58"
25 == Tab key == 25 == Tab key ==
26 PASS input.value is "03:05" 26 PASS input.value is "03:05"
27 PASS input.value is "07:05" 27 PASS input.value is "07:05"
28 PASS document.activeElement.id is "another" 28 PASS document.activeElement.id is "another"
29 == Tab navigation should skip disabled/readonly inputs ==
30 PASS document.activeElement.id is "another"
31 PASS document.activeElement.id is "another"
29 == Shfit+Tab key == 32 == Shfit+Tab key ==
30 PASS input.value is "15:00" 33 PASS input.value is "15:00"
31 PASS input.value is "15:03" 34 PASS input.value is "15:03"
32 PASS document.activeElement.id is "before" 35 PASS document.activeElement.id is "before"
33 == Up key on maximum value == 36 == Up key on maximum value ==
34 PASS input.value is "13:00" 37 PASS input.value is "13:00"
35 == Down key on minimum value == 38 == Down key on minimum value ==
36 PASS input.value is "00:59:59.999" 39 PASS input.value is "00:59:59.999"
37 == Backspace key == 40 == Backspace key ==
38 PASS input.value is "" 41 PASS input.value is ""
39 == Delete key == 42 == Delete key ==
40 PASS input.value is "" 43 PASS input.value is ""
41 == Typeahead == 44 == Typeahead ==
42 PASS input.value is "12:01:56" 45 PASS input.value is "12:01:56"
43 PASS input.value is "12:02:56" 46 PASS input.value is "12:02:56"
44 == RTL Left/Right keys == 47 == RTL Left/Right keys ==
45 PASS input.value is "01:56" 48 PASS input.value is "01:56"
46 PASS input.value is "01:02" 49 PASS input.value is "01:02"
47 PASS input.value is "03:02" 50 PASS input.value is "03:02"
48 PASS successfullyParsed is true 51 PASS successfullyParsed is true
49 52
50 TEST COMPLETE 53 TEST COMPLETE
51 54
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698