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

Side by Side Diff: LayoutTests/platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-appearance-rtl.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; padding: 0 50px;" dir="rtl">
12 <input type=datetime id=datetime value="2012-12-31T23:59Z" list="suggestions" st yle="width: 250px;">
13 <datalist id=suggestions>
14 <option label="Today">2012-11-22T12:00Z</option>
15 <option label="Tomorrow">2012-11-23T12:00Z</option>
16 <option>2012-11-22T01:03Z</option>
17 <option>2012-11-22T01:04Z</option>
18 <option>2012-11-22T01:05Z</option>
19 <option>2012-11-22T01:06Z</option>
20 <option>2012-11-22T01:07Z</option>
21 <option>2012-11-22T01:08Z</option>
22 <option>2012-11-22T01:09Z</option>
23 <option>2012-11-22T01:10Z</option>
24 <option>2012-11-22T01:11Z</option>
25 <option>2012-11-22T01:12Z</option>
26 <option>2012-11-22T01:13Z</option>
27 <option>2012-11-22T01:14Z</option>
28 <option>2012-11-22T01:15Z</option>
29 <option>2012-11-22T01:16Z</option>
30 <option>2012-11-22T01:17Z</option>
31 <option>2012-11-22T01:18Z</option>
32 <option>2012-11-22T01:19Z</option>
33 </datalist>
34
35 <p id="description" style="opacity: 0"></p>
36 <div id="console" style="opacity: 0"></div>
37
38 <script>
39 openPicker(document.getElementById('datetime'), finishTest);
40
41 function finishTest() {
42 popupWindow.focus();
43 eventSender.keyDown('downArrow');
44 finishJSTest();
45 }
46 </script>
47 <script src="../../../../../fast/js/resources/js-test-post.js"></script>
48 </body>
49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698