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

Side by Side Diff: LayoutTests/fast/forms/time/time-appearance-basic.html

Issue 24438004: Rename testRunner.dumpAsText(true) to testRunner.dumpAsTextWithPixelResults() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more tests Created 7 years, 3 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 <html> 1 <html>
2 <body> 2 <body>
3 <script> 3 <script>
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.dumpAsText(true); 5 testRunner.dumpAsTextWithPixelResults();
6 </script> 6 </script>
7 <ul> 7 <ul>
8 <li>step=none <input autofocus type="time"> <input type="time" value="12:34" ></li> 8 <li>step=none <input autofocus type="time"> <input type="time" value="12:34" ></li>
9 <li>step=1 <input type="time" step="1"> <input step="1" type="time" value="1 2:34:56"></li> 9 <li>step=1 <input type="time" step="1"> <input step="1" type="time" value="1 2:34:56"></li>
10 <li>step=0.0001 <input type="time" step="0.001"> <input step="0.001" type="t ime" value="12:34:56.789"></li> 10 <li>step=0.0001 <input type="time" step="0.001"> <input step="0.001" type="t ime" value="12:34:56.789"></li>
11 <li>step=60 <input type="time" step="60"> <input step="60" type="time" value ="12:34"></li> 11 <li>step=60 <input type="time" step="60"> <input step="60" type="time" value ="12:34"></li>
12 <li>step=3600 <input type="time" step="3600"> <input step="3600" type="time" value="12:00"></li> 12 <li>step=3600 <input type="time" step="3600"> <input step="3600" type="time" value="12:00"></li>
13 <li>step=86400 <input type="time" step="86400"> <input step="86400" type="ti me" min="12:34:56.789"></li> 13 <li>step=86400 <input type="time" step="86400"> <input step="86400" type="ti me" min="12:34:56.789"></li>
14 <li>step mismatched <input type="time" step="60" value="12:34:56"></li> 14 <li>step mismatched <input type="time" step="60" value="12:34:56"></li>
15 <li>RTL <input type="time" step="1" value="12:34:56" dir="rtl"></li> 15 <li>RTL <input type="time" step="1" value="12:34:56" dir="rtl"></li>
16 <li>Disabled, step=3600 <input disabled type="time" step="3600"> <input disa bled step="3600" type="time" value="12:34"></li> 16 <li>Disabled, step=3600 <input disabled type="time" step="3600"> <input disa bled step="3600" type="time" value="12:34"></li>
17 <li>Readonly, step=3600 <input readonly type="time" step="3600"> <input read only step="3600" type="time" value="12:34"></li> 17 <li>Readonly, step=3600 <input readonly type="time" step="3600"> <input read only step="3600" type="time" value="12:34"></li>
18 </ul> 18 </ul>
19 19
20 <ul> 20 <ul>
21 <li>text-align: <input type="time" value="12:34" style="text-align: left;">< /li> 21 <li>text-align: <input type="time" value="12:34" style="text-align: left;">< /li>
22 <li>text-transform: <input type="time" value="12:34" style="text-transform: lowercase;"></li> 22 <li>text-transform: <input type="time" value="12:34" style="text-transform: lowercase;"></li>
23 <li>background, color: <input type="time" value="12:34" style="border: 0px; background: green; color: yellow;"></li> 23 <li>background, color: <input type="time" value="12:34" style="border: 0px; background: green; color: yellow;"></li>
24 <li>font-size, font-weight: <input type="time" value="12:34" style="font-siz e: 20pt; font-weight: bold;"></li> 24 <li>font-size, font-weight: <input type="time" value="12:34" style="font-siz e: 20pt; font-weight: bold;"></li>
25 <li>font-size with fixed input width: <input type="time" value="12:34" style ="font-size: 20pt; width: 10em;"></li> 25 <li>font-size with fixed input width: <input type="time" value="12:34" style ="font-size: 20pt; width: 10em;"></li>
26 <li>Fixed input height: <input type="time" value="12:34" style="height: 4em; "></li> 26 <li>Fixed input height: <input type="time" value="12:34" style="height: 4em; "></li>
27 <li>-webkit-appearance:none: <input type="time" value="13:56" style="-webkit -appearance: none;"></li> 27 <li>-webkit-appearance:none: <input type="time" value="13:56" style="-webkit -appearance: none;"></li>
28 <li>padding: <input type="time" value="12:34" style="padding: 10px;"></li> 28 <li>padding: <input type="time" value="12:34" style="padding: 10px;"></li>
29 </ul> 29 </ul>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698