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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/is-object-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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/canvas/webgl/is-object-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/webgl/is-object-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/webgl/is-object-expected.txt
deleted file mode 100644
index 1f7e292ee2dbc360c461a73ce1e3d1b15c464a5c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/webgl/is-object-expected.txt
+++ /dev/null
@@ -1,38 +0,0 @@
-Tests 'is' calls against non-bound and deleted objects
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-PASS buffer = gl.createBuffer() was expected value: NO_ERROR.
-PASS gl.isBuffer(buffer) is false
-PASS gl.bindBuffer(gl.ARRAY_BUFFER, buffer) was expected value: NO_ERROR.
-PASS gl.isBuffer(buffer) is true
-
-PASS framebuffer = gl.createFramebuffer() was expected value: NO_ERROR.
-PASS gl.isFramebuffer(framebuffer) is false
-PASS gl.bindFramebuffer(gl.FRAMEBUFFER, framebuffer) was expected value: NO_ERROR.
-PASS gl.isFramebuffer(framebuffer) is true
-
-PASS renderbuffer = gl.createRenderbuffer() was expected value: NO_ERROR.
-PASS gl.isRenderbuffer(renderbuffer) is false
-PASS gl.bindRenderbuffer(gl.RENDERBUFFER, renderbuffer) was expected value: NO_ERROR.
-PASS gl.isRenderbuffer(renderbuffer) is true
-
-PASS texture = gl.createTexture() was expected value: NO_ERROR.
-PASS gl.isTexture(texture) is false
-PASS gl.bindTexture(gl.TEXTURE_2D, texture) was expected value: NO_ERROR.
-PASS gl.isTexture(texture) is true
-
-PASS program = gl.createProgram() was expected value: NO_ERROR.
-PASS gl.isProgram(program) is true
-PASS gl.deleteProgram(program) was expected value: NO_ERROR.
-PASS gl.isProgram(program) is false
-
-PASS shader = gl.createShader(gl.VERTEX_SHADER) was expected value: NO_ERROR.
-PASS gl.isShader(shader) is true
-PASS gl.deleteShader(shader) was expected value: NO_ERROR.
-PASS gl.isShader(shader) is false
-
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698