| 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 <link rel="stylesheet" href="../../js/resources/js-test-style.css"/> | |
| 7 <script src="../../js/resources/js-test-pre.js"></script> | 6 <script src="../../js/resources/js-test-pre.js"></script> |
| 8 <script src="resources/webgl-test.js"></script> | 7 <script src="resources/webgl-test.js"></script> |
| 9 <script id="vshader" type="x-shader/x-vertex"> | 8 <script id="vshader" type="x-shader/x-vertex"> |
| 10 attribute vec3 pos; | 9 attribute vec3 pos; |
| 11 attribute vec4 colorIn; | 10 attribute vec4 colorIn; |
| 12 varying vec4 color; | 11 varying vec4 color; |
| 13 | 12 |
| 14 void main() | 13 void main() |
| 15 { | 14 { |
| 16 color = colorIn; | 15 color = colorIn; |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 finishTest(); | 342 finishTest(); |
| 344 } | 343 } |
| 345 | 344 |
| 346 </script> | 345 </script> |
| 347 </head> | 346 </head> |
| 348 <body onload="init()"> | 347 <body onload="init()"> |
| 349 <div id="description"></div> | 348 <div id="description"></div> |
| 350 <div id="console"></div> | 349 <div id="console"></div> |
| 351 </body> | 350 </body> |
| 352 </html> | 351 </html> |
| OLD | NEW |