summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance/offscreencanvas/context-lost.html
blob: 0568ad229ee3231789889a2868db44aae01abee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!--
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../../resources/js-test-style.css"/>
<script src="../../js/js-test-pre.js"></script>
<script src="../../js/webgl-test-utils.js"></script>
<script src="../../js/tests/canvas-tests-utils.js"></script>
<script>
function init()
{
    description("Tests behavior under a lost context for OffscreenCanvas");

    if (!window.OffscreenCanvas) {
      testPassed("No OffscreenCanvas support");
      finishTest();
      return;
    }

    canvas = new OffscreenCanvas(10, 10);
    gl = canvas.getContext('webgl');

    // call testValidContext() before checking for the extension, because this is where we check
    // for the isContextLost() method, which we want to do regardless of the extension's presence.
    if (!testValidContext()) {
        testFailed("Some tests failed");
        finishTest();
        return;
    }

    extension = gl.getExtension("WEBGL_lose_context");
    // need an extension that exposes new API methods.
    OES_vertex_array_object = gl.getExtension("OES_vertex_array_object");
    if (extension == null || OES_vertex_array_object == null) {
        testFailed("Some tests failed");
        finishTest();
        return;
    }

    // We need to initialize |uniformLocation| before losing context.
    // Otherwise gl.getUniform() when context is lost will throw.
    uniformLocation = gl.getUniformLocation(program, "tex");
    extension.loseContext();

    canvas.addEventListener("webglcontextlost", function() {
        if (testLostContextWithoutRestore()) {
            testPassed("All tests passed");
            finishTest();
            return;
        } else {
            testFailed("Some tests failed");
            finishTest();
            return;
        }
    }, false);
}

</script>
</head>
<body onload="init()">
<div id="description"></div>
<div id="console"></div>
</body>
</html>