OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
2 "http://www.w3.org/TR/html4/loose.dtd"> | 2 "http://www.w3.org/TR/html4/loose.dtd"> |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <title>WebGL array bounds clamping conformance test.</title> | 5 <title>WebGL array bounds clamping conformance test.</title> |
6 <script src="../../js/resources/js-test-pre.js"></script> | 6 <script src="../../js/resources/js-test-pre.js"></script> |
7 <script src="resources/webgl-test.js"> </script> | 7 <script src="resources/webgl-test.js"> </script> |
8 </head> | 8 </head> |
9 <body> | 9 <body> |
10 <canvas id="example" width="40" height="40" style="width: 40px; height: 40px;"><
/canvas> | 10 <canvas id="example" width="40" height="40" style="width: 40px; height: 40px;"><
/canvas> |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 debug('expected: rgb(' + value + ', 0, 0, 255) was rgb(' + buf[0] +
', ' + buf[1] + ', ' + buf[2] + ', ' + buf[3] + ')'); | 93 debug('expected: rgb(' + value + ', 0, 0, 255) was rgb(' + buf[0] +
', ' + buf[1] + ', ' + buf[2] + ', ' + buf[3] + ')'); |
94 testFailed(msg); | 94 testFailed(msg); |
95 return; | 95 return; |
96 } | 96 } |
97 testPassed(msg); | 97 testPassed(msg); |
98 } | 98 } |
99 } | 99 } |
100 | 100 |
101 init(); | 101 init(); |
102 </script> | 102 </script> |
103 <script src="../../js/resources/js-test-post.js"></script> | |
104 </body> | 103 </body> |
105 </html> | 104 </html> |
106 | 105 |
OLD | NEW |