mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 10:27:32 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
48
dom/canvas/test/webgl-mochitest/test_fb_param_crash.html
Normal file
48
dom/canvas/test/webgl-mochitest/test_fb_param_crash.html
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE HTML>
|
||||
<title>WebGL test: bug 958723</title>
|
||||
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
|
||||
<script src="driver-info.js"></script>
|
||||
<script src="webgl-util.js"></script>
|
||||
<body>
|
||||
<canvas id="c"></canvas>
|
||||
<script>
|
||||
|
||||
// Give ourselves a scope to return early from:
|
||||
(function() {
|
||||
var gl = WebGLUtil.getWebGL('c');
|
||||
if (!gl) {
|
||||
todo(false, 'WebGL is unavailable.');
|
||||
return;
|
||||
}
|
||||
|
||||
// Catch actual WebGLUtil errors, not GL errors.
|
||||
function errorFunc(str) {
|
||||
ok(false, 'Error: ' + str);
|
||||
}
|
||||
WebGLUtil.setErrorFunc(errorFunc);
|
||||
|
||||
function checkGLError(func, info, reference) {
|
||||
var error = gl.getError();
|
||||
var prefix = info ? ('[' + info + '] ') : '';
|
||||
var text = 'gl.getError should be 0x' + reference.toString(16) +
|
||||
', was 0x' + error.toString(16) + '.';
|
||||
func(error == reference, prefix + text);
|
||||
}
|
||||
|
||||
// Begin test:
|
||||
if (!gl.getExtension('WEBGL_draw_buffers')) {
|
||||
todo(false, 'Not having this extension is fine.');
|
||||
return;
|
||||
}
|
||||
checkGLError(ok, 'before bad param query', 0);
|
||||
|
||||
var result = gl.getFramebufferAttachmentParameter(gl.FRAMEBUFFER,
|
||||
gl.COLOR_ATTACHMENT0,
|
||||
gl.FRAMEBUFFER_ATTACHMENT_OBJECT_NAME);
|
||||
|
||||
checkGLError(ok, 'after bad param query', gl.INVALID_OPERATION);
|
||||
})();
|
||||
|
||||
</script>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue