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

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

Issue 2045603002: Handle the "key" field as opposed to keyIdentifier field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove initialization of the view Created 4 years, 6 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 CONSOLE WARNING: line 44: The specified value "undefined" does not conform to th e required format. The format is "HH:mm", "HH:mm:ss" or "HH:mm:ss.SSS" where HH is 00-23, mm is 00-59, ss is 00-59, and SSS is 000-999. 1 CONSOLE WARNING: line 44: The specified value "undefined" does not conform to th e required format. The format is "HH:mm", "HH:mm:ss" or "HH:mm:ss.SSS" where HH is 00-23, mm is 00-59, ss is 00-59, and SSS is 000-999.
2 Multiple fields UI of time input type with keyboard events 2 Multiple fields UI of time input type with keyboard events
3 3
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 5
6 6
7 Please run this with DumpRenderTree. 7 Please run this with DumpRenderTree.
8 8
9 Test following keys: 9 Test following keys:
10 Digit keys 10 Digit keys
(...skipping 26 matching lines...) Expand all
37 PASS eventsCounter.change is 1 37 PASS eventsCounter.change is 1
38 == Tab key == 38 == Tab key ==
39 PASS input.value is "03:05" 39 PASS input.value is "03:05"
40 PASS input.value is "07:05" 40 PASS input.value is "07:05"
41 PASS document.activeElement.id is "another" 41 PASS document.activeElement.id is "another"
42 == Tab navigation should skip disabled inputs == 42 == Tab navigation should skip disabled inputs ==
43 PASS document.activeElement.id is "another" 43 PASS document.activeElement.id is "another"
44 == Tab navigation should not skip readonly inputs, but editing operations should be ignored. == 44 == Tab navigation should not skip readonly inputs, but editing operations should be ignored. ==
45 PASS document.activeElement.id is "input" 45 PASS document.activeElement.id is "input"
46 PASS shadowPseudoIdOfFocusedSubField(input) is "-webkit-datetime-edit-hour-field " 46 PASS shadowPseudoIdOfFocusedSubField(input) is "-webkit-datetime-edit-hour-field "
47 PASS keyDown("upArrow"); input.value is "01:01" 47 PASS keyDown("ArrowUp"); input.value is "01:01"
48 PASS keyDown("downArrow"); input.value is "01:01" 48 PASS keyDown("ArrowDown"); input.value is "01:01"
49 PASS shadowPseudoIdOfFocusedSubField(input) is "-webkit-datetime-edit-minute-fie ld" 49 PASS shadowPseudoIdOfFocusedSubField(input) is "-webkit-datetime-edit-minute-fie ld"
50 PASS keyDown("3"); input.value is "01:01" 50 PASS keyDown("3"); input.value is "01:01"
51 PASS shadowPseudoIdOfFocusedSubField(input) is "-webkit-datetime-edit-ampm-field " 51 PASS shadowPseudoIdOfFocusedSubField(input) is "-webkit-datetime-edit-ampm-field "
52 PASS shadowPseudoIdOfFocusedSubField(input) is "-webkit-datetime-edit-minute-fie ld" 52 PASS shadowPseudoIdOfFocusedSubField(input) is "-webkit-datetime-edit-minute-fie ld"
53 PASS document.activeElement.id is "another" 53 PASS document.activeElement.id is "another"
54 == Shfit+Tab key == 54 == Shfit+Tab key ==
55 PASS input.value is "15:00" 55 PASS input.value is "15:00"
56 PASS input.value is "15:03" 56 PASS input.value is "15:03"
57 PASS document.activeElement.id is "before" 57 PASS document.activeElement.id is "before"
58 == Up key on maximum value == 58 == Up key on maximum value ==
59 PASS input.value is "13:00" 59 PASS input.value is "13:00"
60 == Down key on minimum value == 60 == Down key on minimum value ==
61 PASS input.value is "00:59:59.999" 61 PASS input.value is "00:59:59.999"
62 == Backspace key == 62 == Backspace key ==
63 PASS input.value is "" 63 PASS input.value is ""
64 == Delete key == 64 == Delete key ==
65 PASS input.value is "" 65 PASS input.value is ""
66 == Typeahead == 66 == Typeahead ==
67 PASS input.value is "12:01:56" 67 PASS input.value is "12:01:56"
68 PASS input.value is "12:02:56" 68 PASS input.value is "12:02:56"
69 == RTL focus navigation == 69 == RTL focus navigation ==
70 The tests in this block fail on platforms without the lang-attribute-aware-form- control-UI feature. 70 The tests in this block fail on platforms without the lang-attribute-aware-form- control-UI feature.
71 PASS input.value is "01:56" 71 PASS input.value is "01:56"
72 PASS input.value is "01:02" 72 PASS input.value is "01:02"
73 PASS input.value is "03:02" 73 PASS input.value is "03:02"
74 PASS successfullyParsed is true 74 PASS successfullyParsed is true
75 75
76 TEST COMPLETE 76 TEST COMPLETE
77 77
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698