mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 02:13:08 +09:00
16 lines
431 B
JavaScript
16 lines
431 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests if a WebGL front can be created for a remote tab target.
|
|
*/
|
|
|
|
function* ifWebGLSupported() {
|
|
let { target, front } = yield initBackend(SIMPLE_CANVAS_URL);
|
|
|
|
ok(target, "Should have a target available.");
|
|
ok(front, "Should have a protocol front available.");
|
|
|
|
yield removeTab(target.tab);
|
|
finish();
|
|
}
|