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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-mouse-events.html

Issue 2100243002: Remove non-standardize key code names from event_sender. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix inspector tests that were missed by sed 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../resources/ahem.js"></script> 4 <script src="../../../resources/ahem.js"></script>
5 <script src="../../../resources/js-test.js"></script> 5 <script src="../../../resources/js-test.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <p id="description"></p> 8 <p id="description"></p>
9 <p> 9 <p>
10 Please run this with DRT or WTR. 10 Please run this with DRT or WTR.
(...skipping 26 matching lines...) Expand all
37 description('Multiple fields UI of datetime-local input type with mouse even ts'); 37 description('Multiple fields UI of datetime-local input type with mouse even ts');
38 var input = document.getElementById('input'); 38 var input = document.getElementById('input');
39 39
40 input.value = '2345-07-19T10:00'; 40 input.value = '2345-07-19T10:00';
41 var center = input.offsetHeight / 2; 41 var center = input.offsetHeight / 2;
42 var spinButtonOffset = 26; 42 var spinButtonOffset = 26;
43 var clearButtonOffset = 41; 43 var clearButtonOffset = 41;
44 44
45 debug('==> Focus on the month field.'); 45 debug('==> Focus on the month field.');
46 mouseClickOn(12, center); 46 mouseClickOn(12, center);
47 keyDown('upArrow'); 47 keyDown('ArrowUp');
48 shouldBeEqualToString('input.value', '2345-08-19T10:00'); 48 shouldBeEqualToString('input.value', '2345-08-19T10:00');
49 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1); 49 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1);
50 shouldBeEqualToString('input.value', '2345-09-19T10:00'); 50 shouldBeEqualToString('input.value', '2345-09-19T10:00');
51 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1); 51 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1);
52 shouldBeEqualToString('input.value', '2345-08-19T10:00'); 52 shouldBeEqualToString('input.value', '2345-08-19T10:00');
53 shouldBeZero('window.getSelection().rangeCount'); // No text selection. 53 shouldBeZero('window.getSelection().rangeCount'); // No text selection.
54 54
55 debug(''); 55 debug('');
56 debug('==> Focus on the day field.'); 56 debug('==> Focus on the day field.');
57 mouseClickOn(60, center); 57 mouseClickOn(60, center);
58 keyDown('upArrow'); 58 keyDown('ArrowUp');
59 shouldBeEqualToString('input.value', '2345-08-20T10:00'); 59 shouldBeEqualToString('input.value', '2345-08-20T10:00');
60 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1); 60 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1);
61 shouldBeEqualToString('input.value', '2345-08-21T10:00'); 61 shouldBeEqualToString('input.value', '2345-08-21T10:00');
62 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1); 62 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1);
63 shouldBeEqualToString('input.value', '2345-08-20T10:00'); 63 shouldBeEqualToString('input.value', '2345-08-20T10:00');
64 shouldBeZero('window.getSelection().rangeCount'); // No text selection. 64 shouldBeZero('window.getSelection().rangeCount'); // No text selection.
65 65
66 debug(''); 66 debug('');
67 debug('==> Focus on the year field.'); 67 debug('==> Focus on the year field.');
68 mouseClickOn(108, center); 68 mouseClickOn(108, center);
69 keyDown('upArrow'); 69 keyDown('ArrowUp');
70 shouldBeEqualToString('input.value', '2346-08-20T10:00'); 70 shouldBeEqualToString('input.value', '2346-08-20T10:00');
71 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1); 71 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1);
72 shouldBeEqualToString('input.value', '2347-08-20T10:00'); 72 shouldBeEqualToString('input.value', '2347-08-20T10:00');
73 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1); 73 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1);
74 shouldBeEqualToString('input.value', '2346-08-20T10:00'); 74 shouldBeEqualToString('input.value', '2346-08-20T10:00');
75 shouldBeZero('window.getSelection().rangeCount'); // No text selection. 75 shouldBeZero('window.getSelection().rangeCount'); // No text selection.
76 76
77 // With ICU 52 on Linux/Android, a comma is used to delimete date and time a nd 77 // With ICU 52 on Linux/Android, a comma is used to delimete date and time a nd
78 // the hour and time field positions are shifted. 78 // the hour and time field positions are shifted.
79 var commaOffset = window.internals.oldestShadowRoot(input).textContent.index Of(', ') == -1 ? 0 : 16; 79 var commaOffset = window.internals.oldestShadowRoot(input).textContent.index Of(', ') == -1 ? 0 : 16;
80 80
81 debug(''); 81 debug('');
82 debug('==> Focus on the hour field.'); 82 debug('==> Focus on the hour field.');
83 mouseClickOn(190 + commaOffset, center); 83 mouseClickOn(190 + commaOffset, center);
84 keyDown('upArrow'); 84 keyDown('ArrowUp');
85 shouldBeEqualToString('input.value', '2346-08-20T11:00'); 85 shouldBeEqualToString('input.value', '2346-08-20T11:00');
86 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1); 86 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1);
87 shouldBeEqualToString('input.value', '2346-08-20T00:00'); 87 shouldBeEqualToString('input.value', '2346-08-20T00:00');
88 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1); 88 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1);
89 shouldBeEqualToString('input.value', '2346-08-20T11:00'); 89 shouldBeEqualToString('input.value', '2346-08-20T11:00');
90 shouldBeZero('window.getSelection().rangeCount'); // No text selection. 90 shouldBeZero('window.getSelection().rangeCount'); // No text selection.
91 91
92 debug(''); 92 debug('');
93 debug('==> Focus on the minute field.'); 93 debug('==> Focus on the minute field.');
94 mouseClickOn(240 + commaOffset, center); 94 mouseClickOn(240 + commaOffset, center);
95 keyDown('upArrow'); 95 keyDown('ArrowUp');
96 shouldBeEqualToString('input.value', '2346-08-20T11:01'); 96 shouldBeEqualToString('input.value', '2346-08-20T11:01');
97 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1); 97 mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1);
98 shouldBeEqualToString('input.value', '2346-08-20T11:02'); 98 shouldBeEqualToString('input.value', '2346-08-20T11:02');
99 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1); 99 mouseClickOn(input.offsetWidth - spinButtonOffset, center + 1);
100 shouldBeEqualToString('input.value', '2346-08-20T11:01'); 100 shouldBeEqualToString('input.value', '2346-08-20T11:01');
101 shouldBeZero('window.getSelection().rangeCount'); // No text selection. 101 shouldBeZero('window.getSelection().rangeCount'); // No text selection.
102 102
103 // Set the value explicitly to prevent a earlier failure from leading to a 103 // Set the value explicitly to prevent a earlier failure from leading to a
104 // failure in the subsequent tests. 104 // failure in the subsequent tests.
105 input.value= '2346-08-20T11:01'; 105 input.value= '2346-08-20T11:01';
106 debug(''); 106 debug('');
107 debug('==> Click on a disabled field.'); 107 debug('==> Click on a disabled field.');
108 input.disabled = true; 108 input.disabled = true;
109 mouseClickOn(12, center); 109 mouseClickOn(12, center);
110 keyDown('upArrow'); 110 keyDown('ArrowUp');
111 shouldBeEqualToString('input.value', '2346-08-20T11:01'); 111 shouldBeEqualToString('input.value', '2346-08-20T11:01');
112 input.disabled = false; 112 input.disabled = false;
113 113
114 debug(''); 114 debug('');
115 debug('==> Click on a read-only field.'); 115 debug('==> Click on a read-only field.');
116 input.readOnly = true; 116 input.readOnly = true;
117 mouseClickOn(12, center); 117 mouseClickOn(12, center);
118 keyDown('upArrow'); 118 keyDown('ArrowUp');
119 shouldBeEqualToString('input.value', '2346-08-20T11:01'); 119 shouldBeEqualToString('input.value', '2346-08-20T11:01');
120 input.readOnly = false; 120 input.readOnly = false;
121 121
122 debug(''); 122 debug('');
123 debug('==> Click on clear button.'); 123 debug('==> Click on clear button.');
124 input.readOnly = true; 124 input.readOnly = true;
125 mouseClickOn(input.offsetWidth - clearButtonOffset, center); 125 mouseClickOn(input.offsetWidth - clearButtonOffset, center);
126 shouldBeEqualToString('input.value', '2346-08-20T11:01'); 126 shouldBeEqualToString('input.value', '2346-08-20T11:01');
127 input.disabled = true; 127 input.disabled = true;
128 input.readOnly = false; 128 input.readOnly = false;
129 mouseClickOn(input.offsetWidth - clearButtonOffset, center); 129 mouseClickOn(input.offsetWidth - clearButtonOffset, center);
130 shouldBeEqualToString('input.value', '2346-08-20T11:01'); 130 shouldBeEqualToString('input.value', '2346-08-20T11:01');
131 input.disabled = false; 131 input.disabled = false;
132 mouseClickOn(input.offsetWidth - clearButtonOffset, center); 132 mouseClickOn(input.offsetWidth - clearButtonOffset, center);
133 shouldBeEqualToString('input.value', ''); 133 shouldBeEqualToString('input.value', '');
134 134
135 debug(''); 135 debug('');
136 }; 136 };
137 </script> 137 </script>
138 </body> 138 </body>
139 </html> 139 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698