Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | <!doctype html> |
michael@0 | 2 | <title>compressedTexImage2D</title> |
michael@0 | 3 | <link rel=author href=mailto:Ms2ger@gmail.com title=Ms2ger> |
michael@0 | 4 | <link rel=help href=https://www.khronos.org/registry/webgl/specs/latest/#5.14.8> |
michael@0 | 5 | <script src=/resources/testharness.js></script> |
michael@0 | 6 | <script src=/resources/testharnessreport.js></script> |
michael@0 | 7 | <script src=common.js></script> |
michael@0 | 8 | |
michael@0 | 9 | <div id=log></div> |
michael@0 | 10 | <script> |
michael@0 | 11 | test(function() { |
michael@0 | 12 | var COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0; |
michael@0 | 13 | var gl = getGl(); |
michael@0 | 14 | |
michael@0 | 15 | var tex = gl.createTexture(); |
michael@0 | 16 | gl.bindTexture(gl.TEXTURE_2D, tex); |
michael@0 | 17 | |
michael@0 | 18 | shouldGenerateGLError(gl, gl.INVALID_ENUM, function() { |
michael@0 | 19 | gl.compressedTexImage2D(gl.TEXTURE_2D, 0, COMPRESSED_RGB_S3TC_DXT1_EXT, 4, 4, 0, new Uint8Array(8)); |
michael@0 | 20 | }); |
michael@0 | 21 | shouldGenerateGLError(gl, gl.INVALID_ENUM, function() { |
michael@0 | 22 | gl.compressedTexImage2D(gl.TEXTURE_2D, 0, COMPRESSED_RGB_S3TC_DXT1_EXT, 4, 4, 0, new Uint8Array(8), null); |
michael@0 | 23 | }); |
michael@0 | 24 | test(function() { |
michael@0 | 25 | assert_throws(new TypeError(), function() { |
michael@0 | 26 | gl.compressedTexImage2D(gl.TEXTURE_2D, 0, COMPRESSED_RGB_S3TC_DXT1_EXT, 4, 4, 0); |
michael@0 | 27 | }); |
michael@0 | 28 | }, "Should throw a TypeError when passing too few arguments."); |
michael@0 | 29 | }); |
michael@0 | 30 | </script> |