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

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

Issue 249723003: Remove main frame overflow from some non-scrollbar tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Windows expectations Created 6 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 <html> 1 <html>
2 <body> 2 <body style="overflow: hidden;">
3 <script> 3 <script>
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.dumpAsTextWithPixelResults(); 5 testRunner.dumpAsTextWithPixelResults();
6 </script> 6 </script>
7 <ul> 7 <ul>
8 <li>step=none <input type="time"> <input type="time" value="12:34"></li> 8 <li>step=none <input 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>
(...skipping 15 matching lines...) Expand all
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 <script> 30 <script>
31 var input = document.querySelector('input:read-only'); 31 var input = document.querySelector('input:read-only');
32 if (window.eventSender) 32 if (window.eventSender)
33 eventSender.mouseMoveTo(input.offsetLeft + input.offsetWidth / 2, input.offs etTop + input.offsetHeight / 2); 33 eventSender.mouseMoveTo(input.offsetLeft + input.offsetWidth / 2, input.offs etTop + input.offsetHeight / 2);
34 document.querySelectorAll('input')[0].focus(); 34 document.querySelectorAll('input')[0].focus();
35 </script> 35 </script>
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698