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

Unified Diff: content/test/data/gpu/screenshot_sync.html

Issue 1679593002: Reenable and strengthen screenshot_sync test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup. Created 4 years, 10 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: content/test/data/gpu/screenshot_sync.html
diff --git a/content/test/data/gpu/screenshot_sync.html b/content/test/data/gpu/screenshot_sync.html
deleted file mode 100644
index 7f7b30e2b2b107dae7c35a11fd9f94c38c5377e9..0000000000000000000000000000000000000000
--- a/content/test/data/gpu/screenshot_sync.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>Synchronized screenshot test</title>
-<style>
- html, body { margin: 0; }
-</style>
-</head>
-<body>
- <canvas id="canvas" width="256" height="256"></canvas>
- <div id="text"></div>
-
- <script>
- var canvas = document.getElementById("canvas");
- var ctx = canvas.getContext("2d");
- var text = document.getElementById("text");
- function draw(r, g, b) {
- var rgb = "RGB(" + r + "," + g + "," + b + ")";
- text.textContent = rgb;
- ctx.fillStyle = rgb;
- ctx.fillRect(0, 0, canvas.width, canvas.height);
- }
- </script>
- </body>
-</html>
« no previous file with comments | « no previous file | content/test/data/gpu/screenshot_sync_canvas.html » ('j') | content/test/data/gpu/screenshot_sync_divs.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698