OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p id="description"></p> | 7 <p id="description"></p> |
8 <div id="console"></div> | 8 <div id="console"></div> |
9 <script> | 9 <script> |
10 description('Check stepping-up and -down for range input from renderer.'); | 10 description('Check stepping-up and -down for range input from renderer.'); |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 shouldBe('stepUpExplicitBounds(null, null, 0.33333333333333333, 0, 3)', '"1"'); | 143 shouldBe('stepUpExplicitBounds(null, null, 0.33333333333333333, 0, 3)', '"1"'); |
144 shouldBe('stepUpExplicitBounds(null, null, 0.1, 1)', '"1.1"'); | 144 shouldBe('stepUpExplicitBounds(null, null, 0.1, 1)', '"1.1"'); |
145 shouldBe('stepUpExplicitBounds(null, null, 0.1, 1, 8)', '"1.8"'); | 145 shouldBe('stepUpExplicitBounds(null, null, 0.1, 1, 8)', '"1.8"'); |
146 shouldBe('stepUpExplicitBounds(null, null, 0.1, 1, 10)', '"2"'); | 146 shouldBe('stepUpExplicitBounds(null, null, 0.1, 1, 10)', '"2"'); |
147 shouldBe('stepUpExplicitBounds(0, 1, 0.003921568627450980, 0, 255)', '"1"'); | 147 shouldBe('stepUpExplicitBounds(0, 1, 0.003921568627450980, 0, 255)', '"1"'); |
148 shouldBe('stepDownExplicitBounds(null, null, 0.1, 1, 8)', '"0.2"'); | 148 shouldBe('stepDownExplicitBounds(null, null, 0.1, 1, 8)', '"0.2"'); |
149 shouldBe('stepDownExplicitBounds(null, null, 0.1, 1)', '"0.9"'); | 149 shouldBe('stepDownExplicitBounds(null, null, 0.1, 1)', '"0.9"'); |
150 | 150 |
151 debug(''); | 151 debug(''); |
152 </script> | 152 </script> |
153 <script src="../../js/resources/js-test-post.js"></script> | |
154 </body> | 153 </body> |
155 </html> | 154 </html> |
OLD | NEW |