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

Unified Diff: conformance/drawingbuffer-static-canvas-test.html

Issue 8344024: Remove older revision of webgl conformance tests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/webgl/sdk/tests/
Patch Set: Created 9 years, 2 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
« no previous file with comments | « conformance/draw-elements-out-of-bounds.html ('k') | conformance/drawingbuffer-test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: conformance/drawingbuffer-static-canvas-test.html
===================================================================
--- conformance/drawingbuffer-static-canvas-test.html (revision 106149)
+++ conformance/drawingbuffer-static-canvas-test.html (working copy)
@@ -1,61 +0,0 @@
-<!--
-Copyright (c) 2011 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
- -->
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8">
-<title>WebGL Canvas Conformance Tests</title>
-<link rel="stylesheet" href="../resources/js-test-style.css"/>
-<script src="../resources/js-test-pre.js"></script>
-<script src="resources/webgl-test.js"></script>
-<script src="resources/webgl-test-utils.js"></script>
-</head>
-<body>
-<div id="description"></div>
-<div id="console"></div>
-<canvas id="canvas" style="width: 50px; height: 50px;"> </canvas>
-<script>
-description("This test ensures WebGL implementations correctly implement drawingbufferWidth/Height with compositing.");
-
-debug("");
-
-var wtu = WebGLTestUtils;
-var err;
-var maxSize;
-var canvas = document.getElementById("canvas");
-var gl = wtu.create3DContext(canvas);
-if (!gl) {
- testFailed("context does not exist");
-} else {
- testPassed("context exists");
-
- debug("");
- debug("Checking drawingBufferWidth/drawingBufferHeight");
-
- // Check that a canvas with no width or height is 300x150 pixels
- shouldBe('gl.drawingBufferWidth', 'canvas.width');
- shouldBe('gl.drawingBufferHeight', 'canvas.height');
-
- // Check that changing the canvas size to something too large falls back to reasonable values.
- maxSize = gl.getParameter(gl.MAX_VIEWPORT_DIMS);
- shouldBeTrue('maxSize[0] > 0');
- shouldBeTrue('maxSize[1] > 0');
-
- // debug("MAX_VIEWPORT_DIMS = " + maxSize[0] + "x" + maxSize[1]);
- canvas.width = maxSize[0] * 4;
- canvas.height = maxSize[1] * 4;
- shouldBeTrue('gl.drawingBufferWidth > 0');
- shouldBeTrue('gl.drawingBufferHeight > 0');
- shouldBeTrue('gl.drawingBufferWidth <= maxSize[0]');
- shouldBeTrue('gl.drawingBufferHeight <= maxSize[1]');
- shouldBe('gl.getError()', 'gl.NO_ERROR');
-}
-debug("")
-successfullyParsed = true;
-</script>
-<script src="../resources/js-test-post.js"></script>
-</body>
-</html>
« no previous file with comments | « conformance/draw-elements-out-of-bounds.html ('k') | conformance/drawingbuffer-test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698