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

Side by Side Diff: LayoutTests/fast/forms/range/range-default-value.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 <head> 2 <head>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../js/resources/js-test-pre.js"></script>
4 <body> 4 <body>
5 <p id="description"></p> 5 <p id="description"></p>
6 <form> 6 <form>
7 <input id="slider" type="range" min="1" max="101"> 7 <input id="slider" type="range" min="1" max="101">
8 </form> 8 </form>
9 <div id="console"></div> 9 <div id="console"></div>
10 <script> 10 <script>
11 description("<a href='http://bugs.webkit.org/show_bug.cgi?id=20134'>Bug 20134: R EGRESSION: (2.0.4-3.0.4): No default value set for &lt;input type=range&gt; with an even difference of (max - min)</a>"); 11 description("<a href='http://bugs.webkit.org/show_bug.cgi?id=20134'>Bug 20134: R EGRESSION: (2.0.4-3.0.4): No default value set for &lt;input type=range&gt; with an even difference of (max - min)</a>");
12 12
13 function quoteNumber(n) 13 function quoteNumber(n)
14 { 14 {
15 return "\"" + n + "\""; 15 return "\"" + n + "\"";
16 } 16 }
17 17
18 var slider = document.getElementById("slider"); 18 var slider = document.getElementById("slider");
19 shouldBe("slider.value", quoteNumber(51)); 19 shouldBe("slider.value", quoteNumber(51));
20 </script> 20 </script>
21 <script src="../../js/resources/js-test-post.js"></script>
22 </body> 21 </body>
23 </html> 22 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/range/input-valueasnumber-range.html ('k') | LayoutTests/fast/forms/range/range-drag.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698