| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="text/javascript"> | 3 <script type="text/javascript"> |
| 4 var canvas; | 4 var canvas; |
| 5 var w, h; | 5 var w, h; |
| 6 var gl; | 6 var gl; |
| 7 var extension; | 7 var extension; |
| 8 | 8 |
| 9 function testHorizontalBands() { | 9 function testHorizontalBands() { |
| 10 gl.enable(gl.SCISSOR_TEST); | 10 gl.enable(gl.SCISSOR_TEST); |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 document.title = "SUCCESS: " + renderer; | 99 document.title = "SUCCESS: " + renderer; |
| 100 } | 100 } |
| 101 } | 101 } |
| 102 </script> | 102 </script> |
| 103 </head> | 103 </head> |
| 104 <body onload="onLoad()"> | 104 <body onload="onLoad()"> |
| 105 <canvas id="canvas1" width="16px" height="32px"> | 105 <canvas id="canvas1" width="16px" height="32px"> |
| 106 </canvas> | 106 </canvas> |
| 107 </body> | 107 </body> |
| 108 </html> | 108 </html> |
| OLD | NEW |