| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Texture upload with color profile</title> | 4 <title>Texture upload with color profile</title> |
| 5 <link rel="stylesheet" href="../../js/resources/js-test-style.css"/> | 5 <link rel="stylesheet" href="../../js/resources/js-test-style.css"/> |
| 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 <script src="resources/webgl-test-utils.js"></script> | 8 <script src="resources/webgl-test-utils.js"></script> |
| 9 </head> | 9 </head> |
| 10 <body> | 10 <body> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 gl.readPixels(0, 0, width, height, gl.RGBA, gl.UNSIGNED_BYTE, buf); | 81 gl.readPixels(0, 0, width, height, gl.RGBA, gl.UNSIGNED_BYTE, buf); |
| 82 // This generous range is still enough to catch the regression. | 82 // This generous range is still enough to catch the regression. |
| 83 checkPixelRange(buf, 0, 0, [163, 126, 94, 129], 20); | 83 checkPixelRange(buf, 0, 0, [163, 126, 94, 129], 20); |
| 84 | 84 |
| 85 debug(""); | 85 debug(""); |
| 86 isSuccessfullyParsed(); | 86 isSuccessfullyParsed(); |
| 87 } | 87 } |
| 88 </script> | 88 </script> |
| 89 </body> | 89 </body> |
| 90 </html> | 90 </html> |
| OLD | NEW |