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> | 7 <p> |
8 Test handling of sizes exceeding the maximum supported value. | 8 Test handling of sizes exceeding the maximum supported value. |
9 </p> | 9 </p> |
10 <script> | 10 <script> |
(...skipping 21 matching lines...) Expand all Loading... |
32 testSize(35791390, 35791392); // float impression | 32 testSize(35791390, 35791392); // float impression |
33 testSize(35791392, 35791392); | 33 testSize(35791392, 35791392); |
34 testSize(35791394, 35791392); // float impression | 34 testSize(35791394, 35791392); // float impression |
35 testSize(35791395, 0); | 35 testSize(35791395, 0); |
36 testSize(35791396, 0); | 36 testSize(35791396, 0); |
37 | 37 |
38 document.body.removeChild(el); | 38 document.body.removeChild(el); |
39 </script> | 39 </script> |
40 </body> | 40 </body> |
41 </html> | 41 </html> |
OLD | NEW |