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

Side by Side Diff: LayoutTests/fast/forms/datalist/input-appearance-range-with-padding-with-datalist.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, 2 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></head> 3 <head></head>
4 <body> 4 <body>
5 <p id="description">Tests if tick marks are drawn in the correct positions even when the element has padding. <a href="https://bugs.webkit.org/show_bug.cgi?id=9 3791">Bug 93791</a></p> 5 <p id="description">Tests if tick marks are drawn in the correct positions even when the element has padding. <a href="https://bugs.webkit.org/show_bug.cgi?id=9 3791">Bug 93791</a></p>
6 <input type=range list=foo style="width: 200px; padding: 0 40px;" value=20 /> 6 <input type=range list=foo style="width: 200px; padding: 0 40px;" value=20 />
7 <input type=range list=foo dir=rtl style="width: 200px; padding: 0 40px;" value= 20 /> 7 <input type=range list=foo dir=rtl style="width: 200px; padding: 0 40px;" value= 20 />
8 <input type=range list=foo style="-webkit-appearance:slider-vertical; width: 20p x; height: 200px; padding: 40px 0;" value=20 /> 8 <input type=range list=foo style="-webkit-appearance:slider-vertical; width: 20p x; height: 200px; padding: 40px 0;" value=20 />
9 <input type=range list=foo dir=rtl style="-webkit-appearance:slider-vertical; wi dth: 20px; height: 200px; padding: 40px 0;" value=20 /> 9 <input type=range list=foo dir=rtl style="-webkit-appearance:slider-vertical; wi dth: 20px; height: 200px; padding: 40px 0;" value=20 />
10 <datalist id=foo> 10 <datalist id=foo>
11 <option>0</option> 11 <option>0</option>
12 <option>10</option> 12 <option>10</option>
13 <option>20</option> 13 <option>20</option>
14 <option>30</option> 14 <option>30</option>
15 <option>40</option> 15 <option>40</option>
16 <option>50</option> 16 <option>50</option>
17 <option>60</option> 17 <option>60</option>
18 <option>70</option> 18 <option>70</option>
19 <option>100</option> 19 <option>100</option>
20 </datalist> 20 </datalist>
21 </body> 21 </body>
22 </html> 22 </html>
23 <script> 23 <script>
24 if (window.testRunner) 24 if (window.testRunner)
25 testRunner.dumpAsText(true); 25 testRunner.dumpAsTextWithPixelResults();
26 </script> 26 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698