diff --git a/sdk/tests/conformance2/extensions/webgl-shader-pixel-local-storage.html b/sdk/tests/conformance2/extensions/webgl-shader-pixel-local-storage.html index e548eea46..7834bbd31 100644 --- a/sdk/tests/conformance2/extensions/webgl-shader-pixel-local-storage.html +++ b/sdk/tests/conformance2/extensions/webgl-shader-pixel-local-storage.html @@ -226,6 +226,8 @@ wtu.glErrorShouldBe(gl, gl.INVALID_VALUE); pls.framebufferPixelLocalClearValuefvWEBGL(2, new Float32Array(5), 2); wtu.glErrorShouldBe(gl, gl.INVALID_VALUE); + pls.framebufferPixelLocalClearValuefvWEBGL(2, new Float32Array(5), 4294967295); + wtu.glErrorShouldBe(gl, gl.INVALID_VALUE); pls.framebufferPixelLocalClearValuefvWEBGL(1, [0, 0, 0, 0, 0], 2); wtu.glErrorShouldBe(gl, gl.INVALID_VALUE); pls.framebufferPixelLocalClearValueivWEBGL(0, new Int32Array(5), 2);