| OLD | NEW |
| 1 | 1 |
| 2 <!DOCTYPE html> | 2 <!DOCTYPE html> |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <meta charset="utf-8"> | 5 <meta charset="utf-8"> |
| 6 <title>Verifies that GL framebuffer bindings do not change when canvas is resize
d</title> | 6 <title>Verifies that GL framebuffer bindings do not change when canvas is resize
d</title> |
| 7 <link rel="stylesheet" href="../../js/resources/js-test-style.css"/> | |
| 8 <script src="../../js/resources/js-test-pre.js"></script> | 7 <script src="../../js/resources/js-test-pre.js"></script> |
| 9 <script src="resources/webgl-test.js"></script> | 8 <script src="resources/webgl-test.js"></script> |
| 10 <script src="resources/webgl-test-utils.js"></script> | 9 <script src="resources/webgl-test-utils.js"></script> |
| 11 </head> | 10 </head> |
| 12 <body> | 11 <body> |
| 13 <canvas id="example" width="4px" height="4px"></canvas> | 12 <canvas id="example" width="4px" height="4px"></canvas> |
| 14 <div id="description"></div> | 13 <div id="description"></div> |
| 15 <div id="console"></div> | 14 <div id="console"></div> |
| 16 <script> | 15 <script> |
| 17 description("Verifies that GL framebuffer bindings do not change when canvas is
resized"); | 16 description("Verifies that GL framebuffer bindings do not change when canvas is
resized"); |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 test(); | 73 test(); |
| 75 finishTest(); | 74 finishTest(); |
| 76 glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors."); | 75 glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors."); |
| 77 }); | 76 }); |
| 78 | 77 |
| 79 successfullyParsed = true; | 78 successfullyParsed = true; |
| 80 </script> | 79 </script> |
| 81 </body> | 80 </body> |
| 82 </html> | 81 </html> |
| 83 | 82 |
| OLD | NEW |