2 Copyright (c) 2019 The Khronos Group Inc.
3 Use of this source code is governed by an MIT-style license that can be
4 found in the LICENSE.txt file.
10 <link rel=
"stylesheet" href=
"../../resources/js-test-style.css"/>
11 <script src=
"../../js/js-test-pre.js"></script>
12 <script src=
"../../js/webgl-test-utils.js"></script>
16 description("Tests behavior under a lost context for OffscreenCanvas in a worker");
18 if (!window
.OffscreenCanvas
) {
19 testPassed("No OffscreenCanvas support");
24 var worker
= new Worker('context-lost-worker.js');
25 worker
.postMessage("Start worker");
26 worker
.onmessage = function(e
) {
27 const fn
= e
.data
.fail
? testFailed
: testPassed
;
29 if (e
.data
.finishTest
) {
38 <body onload=
"init()">
39 <div id=
"description"></div>
40 <div id=
"console"></div>