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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/context-release-upon-reload.html

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/context-release-upon-reload.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/webgl/context-release-upon-reload.html b/third_party/WebKit/LayoutTests/fast/canvas/webgl/context-release-upon-reload.html
deleted file mode 100644
index b8dc24fe2335525452b9c5685e9ccec0f057d600..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/webgl/context-release-upon-reload.html
+++ /dev/null
@@ -1,81 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8">
-<title>WebGL Context Release Test</title>
-<script src="../../../resources/js-test.js"></script>
-<script src="resources/webgl-test.js"></script>
-</head>
-<body>
-<iframe id="host" style="width: 256px; height: 256px; border: 0;"></iframe>
-<div id="description"></div>
-<div id="console"></div>
-<script>
-description("This test ensures that WebGL contexts are released properly upon page reload");
-
-window.jsTestIsAsync = true;
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-var host = document.getElementById("host");
-var testIterations = 8;
-var currentIteration = 0;
-
-function refreshFrame() {
- if(currentIteration < testIterations) {
- currentIteration++;
- host.src = "resources/context-release-upon-reload-child.html";
- } else {
- testPassed("All drawing buffers were allocated at the correct size");
- finishTest();
- }
-}
-
-function testContext() {
- var bail = false;
- var gl = host.contentWindow.glContext;
- if (gl == null) {
- bail = true;
- testFailed("context was not created properly");
- }
-
- if (gl) {
- var err = gl.getError();
- if (err != gl.NO_ERROR) {
- bail = true;
- testFailed("Should be no GL error; got " + getGLErrorAsString(gl, err));
- }
- }
-
- if (bail) {
- finishTest();
- return;
- }
-
- if (gl.canvas.width != gl.drawingBufferWidth ||
- gl.canvas.height != gl.drawingBufferHeight) {
- testFailed("At iteration " + currentIteration + " of " + testIterations +
- ": Buffer was the wrong size: " +
- gl.drawingBufferWidth + "x" + gl.drawingBufferHeight);
- finishTest();
- return;
- } else {
- refreshFrame();
- }
-
- gl = null;
-}
-
-window.addEventListener("message", function(event) {
- if(event.data == "Ready") {
- testContext();
- }
-});
-
-refreshFrame();
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698