Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/attrib-location-length-limits-expected.txt

Issue 1601093008: Remove duplicated WebGL layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 Verify limits on the lengths of attrib locations.
2 Test attrib location underneath the length limit
3 PASS gl.getProgramParameter(program, gl.LINK_STATUS) is true
4 PASS attrib location should not be -1
5 PASS getError was expected value: NO_ERROR :
6 Test attrib location exactly at the length limit
7 PASS gl.getProgramParameter(program, gl.LINK_STATUS) is true
8 PASS attrib location should not be -1
9 PASS getError was expected value: NO_ERROR :
10 Test attrib location over the length limit
11 Shader compilation should fail
12 PASS wtu.loadShaderFromScript(gl, "badVertexShader", gl.VERTEX_SHADER, function (err) {}) is null
13 PASS getError was expected value: NO_ERROR :
14 Attempt to bind too-long attrib location should produce error
15 PASS getError was expected value: INVALID_VALUE :
16 Attempt to fetch too-long attrib location should produce error
17 PASS gl.getAttribLocation(program, "vPosition01234567890123456789012345678901234 56789012345678901234567890123456789012345678901234567890123456789012345678901234 56789012345678901234567890123456789012345678901234567890123456789012345678901234 56789012345678901234567890123456789012345678901234567") is -1
18 PASS getError was expected value: INVALID_VALUE :
19 PASS successfullyParsed is true
20
21 TEST COMPLETE
22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698