OLD | NEW |
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="../fast/js/resources/js-test-pre.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" |
(...skipping 17 matching lines...) Expand all Loading... |
28 shouldBe("axRange1.maxValue", "10"); | 28 shouldBe("axRange1.maxValue", "10"); |
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 <script src="../fast/js/resources/js-test-post.js"></script> | |
39 </body> | 38 </body> |
OLD | NEW |