Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html class="reftest-wait"> |
michael@0 | 3 | <head> |
michael@0 | 4 | <meta charset="UTF-8"> |
michael@0 | 5 | |
michael@0 | 6 | <script type="text/javascript" src="webgl-utils.js"></script> |
michael@0 | 7 | <script type="text/javascript"> |
michael@0 | 8 | /* Clear Test |
michael@0 | 9 | * |
michael@0 | 10 | * Clear the canvas to green to test that we get pixels to the screen. |
michael@0 | 11 | */ |
michael@0 | 12 | |
michael@0 | 13 | "use strict"; |
michael@0 | 14 | |
michael@0 | 15 | function renderGL(gl) { |
michael@0 | 16 | gl.clearColor(0.0, 1.0, 0.0, 1.0); |
michael@0 | 17 | gl.clear(gl.COLOR_BUFFER_BIT); |
michael@0 | 18 | gl.finish(); |
michael@0 | 19 | } |
michael@0 | 20 | |
michael@0 | 21 | function renderFailure(canvas) { |
michael@0 | 22 | // This will also trigger RAF for us. |
michael@0 | 23 | var context = canvas.getContext("2d"); |
michael@0 | 24 | context.fillText('WebGL failed.', 64, 64); |
michael@0 | 25 | } |
michael@0 | 26 | |
michael@0 | 27 | function runTest() { |
michael@0 | 28 | var canvas = document.getElementById("canvas"); |
michael@0 | 29 | var gl = initGL(canvas); |
michael@0 | 30 | |
michael@0 | 31 | if (gl) |
michael@0 | 32 | renderGL(gl); |
michael@0 | 33 | else |
michael@0 | 34 | renderFailure(canvas); |
michael@0 | 35 | |
michael@0 | 36 | waitForComposite(testComplete); |
michael@0 | 37 | } |
michael@0 | 38 | |
michael@0 | 39 | function testComplete() { |
michael@0 | 40 | document.documentElement.removeAttribute("class"); |
michael@0 | 41 | } |
michael@0 | 42 | |
michael@0 | 43 | </script> |
michael@0 | 44 | </head> |
michael@0 | 45 | |
michael@0 | 46 | <body onload="rAF(runTest);"> |
michael@0 | 47 | <canvas id="canvas" width="256" height="256"></canvas> |
michael@0 | 48 | </body> |
michael@0 | 49 | |
michael@0 | 50 | </html> |