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

Side by Side Diff: LayoutTests/fast/forms/suggestion-picker/datetime-suggestion-picker-min-max-attribute.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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 <script src="../../../../../fast/forms/resources/picker-common.js"></script> 5 <script src="../../forms/resources/picker-common.js"></script>
6 <script src="resources/suggestion-picker-common.js"></script> 6 <script src="resources/suggestion-picker-common.js"></script>
7 </head> 7 </head>
8 <body style="background-color: #bbbbbb;"> 8 <body style="background-color: #bbbbbb;">
9 <p id="description"></p> 9 <p id="description"></p>
10 <div id="console"></div> 10 <div id="console"></div>
11 <input type=datetime id=datetime value="2012-11-20T12:00Z" min="2012-11-20T06:00 Z" max="2012-11-21T12:00Z" list=suggestions> 11 <input type=datetime id=datetime value="2012-11-20T12:00Z" min="2012-11-20T06:00 Z" max="2012-11-21T12:00Z" list=suggestions>
12 <datalist id=suggestions> 12 <datalist id=suggestions>
13 <option>2012-11-19T18:00Z</option> 13 <option>2012-11-19T18:00Z</option>
14 <option>2012-11-20T00:00Z</option> 14 <option>2012-11-20T00:00Z</option>
15 <option>2012-11-20T06:00Z</option> 15 <option>2012-11-20T06:00Z</option>
(...skipping 24 matching lines...) Expand all
40 shouldBeEqualToString('entryValues()[2]', '2012-11-20T18:00Z'); 40 shouldBeEqualToString('entryValues()[2]', '2012-11-20T18:00Z');
41 shouldBeEqualToString('entryValues()[3]', '2012-11-21T00:00Z'); 41 shouldBeEqualToString('entryValues()[3]', '2012-11-21T00:00Z');
42 shouldBeEqualToString('entryValues()[4]', '2012-11-21T06:00Z'); 42 shouldBeEqualToString('entryValues()[4]', '2012-11-21T06:00Z');
43 shouldBeEqualToString('entryValues()[5]', '2012-11-21T12:00Z'); 43 shouldBeEqualToString('entryValues()[5]', '2012-11-21T12:00Z');
44 shouldBeEqualToString('entryValues()[6]', '@openCalendarPicker'); 44 shouldBeEqualToString('entryValues()[6]', '@openCalendarPicker');
45 45
46 finishJSTest(); 46 finishJSTest();
47 } 47 }
48 48
49 </script> 49 </script>
50 <script src="../../../../../fast/js/resources/js-test-post.js"></script> 50 <script src="../../js/resources/js-test-post.js"></script>
51 </body> 51 </body>
52 </html> 52 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698