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

Side by Side Diff: LayoutTests/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 window.enablePixelTesting = true;
6 </script>
7 <script src="../../../../../fast/js/resources/js-test-pre.js"></script>
8 <script src="../../../../../fast/forms/resources/picker-common.js"></script>
9 <script src="resources/suggestion-picker-common.js"></script>
10 </head>
11 <body style="background-color: #eeffff;">
12 <input type=time id=time value="12:31" list="suggestions" style="width: 200px;" step="0.001">
13 <datalist id=suggestions>
14 <option>111:23</option> <!--invalid-->
15 <option>13:60</option> <!--invalid-->
16 <option>foo</option> <!--invalid-->
17 <option label="Now">01:01</option>
18 <option>14:23</option>
19 <option>12:34:56</option>
20 <option>01:23:45.678</option>
21 <option>01:05</option>
22 <option>01:06</option>
23 <option>01:07</option>
24 <option>01:08</option>
25 <option>01:09</option>
26 <option>01:10</option>
27 <option>01:11</option>
28 <option>01:12</option>
29 <option>01:13</option>
30 <option>01:14</option>
31 <option>01:15</option>
32 <option>01:16</option>
33 <option>01:17</option>
34 <option>01:18</option>
35 <option>01:19</option>
36 <option>01:20</option>
37 </datalist>
38
39 <p id="description" style="opacity: 0"></p>
40 <div id="console" style="opacity: 0"></div>
41
42 <script>
43 openPicker(document.getElementById('time'), finishTest);
44
45 function finishTest() {
46 popupWindow.focus();
47 eventSender.keyDown('downArrow');
48 finishJSTest();
49 }
50 </script>
51 <script src="../../../../../fast/js/resources/js-test-post.js"></script>
52 </body>
53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698