gecko-dev/devtools/client/shadereditor/test/browser_se_editors-contents.js

30 строки
892 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Tests if the editors contain the correct text when a program
* becomes available.
*/
async function ifWebGLSupported() {
let { target, panel } = await initShaderEditor(SIMPLE_CANVAS_URL);
let { gFront, ShadersEditorsView, EVENTS } = panel.panelWin;
reload(target);
await promise.all([
once(gFront, "program-linked"),
once(panel.panelWin, EVENTS.SOURCES_SHOWN)
]);
let vsEditor = await ShadersEditorsView._getEditor("vs");
let fsEditor = await ShadersEditorsView._getEditor("fs");
is(vsEditor.getText().indexOf("gl_Position"), 170,
"The vertex shader editor contains the correct text.");
is(fsEditor.getText().indexOf("gl_FragColor"), 97,
"The fragment shader editor contains the correct text.");
await teardown(panel);
finish();
}