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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/shader-precision-format-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/shader-precision-format-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/webgl/shader-precision-format-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/webgl/shader-precision-format-expected.txt
deleted file mode 100644
index d928fa0f23b43e4fb142cccf9c7caba1398c3c40..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/webgl/shader-precision-format-expected.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-WebGL shader precision format test.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-Tests that WebGLShaderPrecisionFormat class and getShaderPrecisionFormat work.
-
-
-Test that getShaderPrecisionFormat returns a WebGLShaderPrecisionFormat object.
-
-PASS gl.getShaderPrecisionFormat(gl.VERTEX_SHADER, gl.LOW_FLOAT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.VERTEX_SHADER, gl.MEDIUM_FLOAT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.VERTEX_SHADER, gl.HIGH_FLOAT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.VERTEX_SHADER, gl.LOW_INT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.VERTEX_SHADER, gl.MEDIUM_INT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.VERTEX_SHADER, gl.HIGH_INT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.LOW_FLOAT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.MEDIUM_FLOAT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.LOW_INT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.MEDIUM_INT) instanceof WebGLShaderPrecisionFormat is true
-PASS gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_INT) instanceof WebGLShaderPrecisionFormat is true
-
-Test that getShaderPrecisionFormat throws an error with invalid parameters.
-
-PASS gl.getShaderPrecisionFormat(gl.HIGH_INT, gl.VERTEX_SHADER) generated expected GL error: INVALID_ENUM.
-
-Test that WebGLShaderPrecisionFormat values are sensible.
-
-PASS shaderPrecisionFormat.rangeMin >= 1 is true
-PASS shaderPrecisionFormat.rangeMax >= 1 is true
-PASS shaderPrecisionFormat.precision >= 8 is true
-PASS shaderPrecisionFormat.rangeMin >= 14 is true
-PASS shaderPrecisionFormat.rangeMax >= 14 is true
-PASS shaderPrecisionFormat.precision >= 10 is true
-PASS shaderPrecisionFormat.rangeMin >= 62 is true
-PASS shaderPrecisionFormat.rangeMax >= 62 is true
-PASS shaderPrecisionFormat.precision >= 16 is true
-PASS shaderPrecisionFormat.rangeMin >= 8 is true
-PASS shaderPrecisionFormat.rangeMax >= 8 is true
-PASS shaderPrecisionFormat.precision == 0 is true
-PASS shaderPrecisionFormat.rangeMin >= 10 is true
-PASS shaderPrecisionFormat.rangeMax >= 10 is true
-PASS shaderPrecisionFormat.precision == 0 is true
-PASS shaderPrecisionFormat.rangeMin >= 16 is true
-PASS shaderPrecisionFormat.rangeMax >= 16 is true
-PASS shaderPrecisionFormat.precision == 0 is true
-
-Test that getShaderPrecisionFormat returns the same thing every call.
-
-PASS shaderPrecisionFormat.rangeMin == shaderPrecisionFormat2.rangeMin is true
-PASS shaderPrecisionFormat.rangeMax == shaderPrecisionFormat2.rangeMax is true
-PASS shaderPrecisionFormat.precision == shaderPrecisionFormat2.precision is true
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698