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

Side by Side Diff: LayoutTests/accessibility/input-type-range-aria-value.html

Issue 58533003: Move fast/js/resources files to resources. (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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <head> 2 <head>
3 <title>Test input type=range with ARIA attributes</title> 3 <title>Test input type=range with ARIA attributes</title>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 7
8 <div> 8 <div>
9 <input id="range1" type="range" min="1" max="10" value="5"> 9 <input id="range1" type="range" min="1" max="10" value="5">
10 <input id="range2" type="range" min="1" max="10" value="5" 10 <input id="range2" type="range" min="1" max="10" value="5"
11 aria-valuemin="10" aria-valuemax="100" aria-valuenow="50"> 11 aria-valuemin="10" aria-valuemax="100" aria-valuenow="50">
12 <input id="range3" type="range" min="1" max="10" value="5" 12 <input id="range3" type="range" min="1" max="10" value="5"
13 aria-valuetext="5 of 10"> 13 aria-valuetext="5 of 10">
14 </div> 14 </div>
(...skipping 14 matching lines...) Expand all
29 shouldBe("axRange1.intValue", "5"); 29 shouldBe("axRange1.intValue", "5");
30 30
31 shouldBe("axRange2.minValue", "10"); 31 shouldBe("axRange2.minValue", "10");
32 shouldBe("axRange2.maxValue", "100"); 32 shouldBe("axRange2.maxValue", "100");
33 shouldBe("axRange2.intValue", "50"); 33 shouldBe("axRange2.intValue", "50");
34 34
35 shouldBe("axRange3.valueDescription", "'AXValueDescription: 5 of 10'"); 35 shouldBe("axRange3.valueDescription", "'AXValueDescription: 5 of 10'");
36 } 36 }
37 </script> 37 </script>
38 </body> 38 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698