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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/instanceof-test-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 WebGL instanceof test.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5 Tests that instanceof works on WebGL objects.
6
7 PASS gl instanceof WebGLRenderingContext is true
8 PASS gl.createBuffer() instanceof WebGLBuffer is true
9 PASS gl.createFramebuffer() instanceof WebGLFramebuffer is true
10 PASS gl.createProgram() instanceof WebGLProgram is true
11 PASS gl.createRenderbuffer() instanceof WebGLRenderbuffer is true
12 PASS gl.createShader(gl.VERTEX_SHADER) instanceof WebGLShader is true
13 PASS gl.createTexture() instanceof WebGLTexture is true
14 PASS gl.getUniformLocation(program, "color") instanceof WebGLUniformLocation is true
15 PASS gl.getActiveAttrib(program, 0) instanceof WebGLActiveInfo is true
16 PASS gl.getActiveUniform(program, 0) instanceof WebGLActiveInfo is true
17
18 Tests that those WebGL objects can not be constructed through new operator
19
20 PASS new WebGLRenderingContext threw an error
21 PASS new WebGLActiveInfo threw an error
22 PASS new WebGLBuffer threw an error
23 PASS new WebGLFramebuffer threw an error
24 PASS new WebGLProgram threw an error
25 PASS new WebGLRenderbuffer threw an error
26 PASS new WebGLShader threw an error
27 PASS new WebGLTexture threw an error
28 PASS new WebGLUniformLocation threw an error
29 PASS new WebGLShaderPrecisionFormat threw an error
30 PASS successfullyParsed is true
31
32 TEST COMPLETE
33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698