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

Side by Side Diff: LayoutTests/fast/forms/datalist/input-appearance-range-with-datalist-zoomed.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 <script> 1 <script>
2 if (window.testRunner) 2 if (window.testRunner)
3 testRunner.dumpAsText(true); 3 testRunner.dumpAsTextWithPixelResults();
4 </script> 4 </script>
5 5
6 <div style="zoom: 0.7;"> 6 <div style="zoom: 0.7;">
7 <input type=range list=foo style="width: 100px;" /> 7 <input type=range list=foo style="width: 100px;" />
8 <input type=range list=foo style="-webkit-appearance:slider-vertical; height : 100px; width: 30px" /> 8 <input type=range list=foo style="-webkit-appearance:slider-vertical; height : 100px; width: 30px" />
9 </div> 9 </div>
10 10
11 <div style="zoom: 1.5;"> 11 <div style="zoom: 1.5;">
12 <input type=range list=foo style="width: 100px;" /> 12 <input type=range list=foo style="width: 100px;" />
13 <input type=range list=foo style="-webkit-appearance:slider-vertical; height : 100px; width: 30px" /> 13 <input type=range list=foo style="-webkit-appearance:slider-vertical; height : 100px; width: 30px" />
14 </div> 14 </div>
15 15
16 <div style="zoom: 2;"> 16 <div style="zoom: 2;">
17 <input type=range list=foo style="width: 100px;" /> 17 <input type=range list=foo style="width: 100px;" />
18 <input type=range list=foo style="-webkit-appearance:slider-vertical; height : 100px; width: 30px" /> 18 <input type=range list=foo style="-webkit-appearance:slider-vertical; height : 100px; width: 30px" />
19 </div> 19 </div>
20 20
21 <datalist id=foo> 21 <datalist id=foo>
22 <option>0</option> 22 <option>0</option>
23 <option>10</option> 23 <option>10</option>
24 <option>20</option> 24 <option>20</option>
25 <option>40</option> 25 <option>40</option>
26 <option>80</option> 26 <option>80</option>
27 <option>100</option> 27 <option>100</option>
28 </datalist> 28 </datalist>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698