content/canvas/test/reftest/webgl-resize-test.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

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

mercurial