OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title>WebGL Conformance Tests</title> | 5 <title>WebGL Conformance Tests</title> |
6 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script> | 6 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script> |
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 </head> | 9 </head> |
10 <body> | 10 <body> |
11 <div id="description"></div> | 11 <div id="description"></div> |
12 <div id="console"></div> | 12 <div id="console"></div> |
13 <canvas id="canvas" width="2" height="2"> </canvas> | 13 <canvas id="canvas" width="2" height="2"> </canvas> |
14 <script> | 14 <script> |
15 description("Test that functions returning strings really do return strings (and
not e.g. null)"); | 15 description("Test that functions returning strings really do return strings (and
not e.g. null)"); |
16 debug(""); | 16 debug(""); |
17 | 17 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 shouldReturnString("gl.getParameter(gl.SHADING_LANGUAGE_VERSION)"); | 85 shouldReturnString("gl.getParameter(gl.SHADING_LANGUAGE_VERSION)"); |
86 } | 86 } |
87 | 87 |
88 debug(""); | 88 debug(""); |
89 successfullyParsed = true; | 89 successfullyParsed = true; |
90 | 90 |
91 </script> | 91 </script> |
92 | 92 |
93 </body> | 93 </body> |
94 </html> | 94 </html> |
OLD | NEW |