mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
20 lines
528 B
JavaScript
20 lines
528 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests if notifications about WebGL programs being linked are not sent
|
|
* if the front wasn't set up first.
|
|
*/
|
|
|
|
function ifWebGLSupported() {
|
|
let [target, debuggee, front] = yield initBackend(SIMPLE_CANVAS_URL);
|
|
|
|
once(front, "program-linked").then(() => {
|
|
ok(false, "A 'program-linked' notification shouldn't have been sent!");
|
|
});
|
|
|
|
yield reload(target);
|
|
yield removeTab(target.tab);
|
|
finish();
|
|
}
|