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 <script src="../../js/resources/js-test-pre.js"></script> | 7 <script src="../../../resources/js-test.js"></script> |
8 <script src="resources/webgl-test.js"></script> | 8 <script src="resources/webgl-test.js"></script> |
9 <script src="resources/webgl-test-utils.js"></script> | 9 <script src="resources/webgl-test-utils.js"></script> |
10 </head> | 10 </head> |
11 <body> | 11 <body> |
12 <canvas id="example" width="4px" height="4px"></canvas> | 12 <canvas id="example" width="4px" height="4px"></canvas> |
13 <div id="description"></div> | 13 <div id="description"></div> |
14 <div id="console"></div> | 14 <div id="console"></div> |
15 <script> | 15 <script> |
16 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"); |
17 | 17 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 test(); | 73 test(); |
74 finishTest(); | 74 finishTest(); |
75 glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors."); | 75 glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors."); |
76 }); | 76 }); |
77 | 77 |
78 successfullyParsed = true; | 78 successfullyParsed = true; |
79 </script> | 79 </script> |
80 </body> | 80 </body> |
81 </html> | 81 </html> |
82 | 82 |
OLD | NEW |