|
1 <!DOCTYPE html> |
|
2 <html class="reftest-wait"> |
|
3 <head> |
|
4 <meta charset="UTF-8"> |
|
5 |
|
6 <script type="text/javascript" src="webgl-utils.js"></script> |
|
7 <script type="text/javascript"> |
|
8 /* Resize Test |
|
9 * |
|
10 * Create canvas of wrong size. |
|
11 * Clear the canvas to red. |
|
12 * Resize to correct size. |
|
13 * Clear to green. |
|
14 */ |
|
15 |
|
16 "use strict"; |
|
17 |
|
18 function render(gl) { |
|
19 gl.clearColor(1.0, 0.0, 0.0, 1.0); |
|
20 gl.clear(gl.COLOR_BUFFER_BIT); |
|
21 |
|
22 gl.canvas.width = 256; |
|
23 gl.canvas.height = 256; |
|
24 gl.clearColor(0.0, 1.0, 0.0, 1.0); |
|
25 gl.clear(gl.COLOR_BUFFER_BIT); |
|
26 |
|
27 gl.finish(); |
|
28 } |
|
29 |
|
30 function renderFailure(canvas) { |
|
31 // This will also trigger RAF for us. |
|
32 var context = canvas.getContext("2d"); |
|
33 context.fillText('WebGL failed.', 64, 64); |
|
34 } |
|
35 |
|
36 function runTest() { |
|
37 var canvas = document.getElementById("canvas"); |
|
38 |
|
39 var gl = initGL(canvas); |
|
40 if (gl) |
|
41 render(gl); |
|
42 else |
|
43 renderFailure(canvas); |
|
44 |
|
45 waitForComposite(testComplete); |
|
46 } |
|
47 |
|
48 function testComplete() { |
|
49 document.documentElement.removeAttribute("class"); |
|
50 } |
|
51 </script> |
|
52 </head> |
|
53 |
|
54 <body onload="rAF(runTest);"> |
|
55 <canvas id="canvas" width="128" height="128" bgcolor='yellow'></canvas> |
|
56 </body> |
|
57 |
|
58 </html> |