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

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

Issue 2838153003: Fix darkened pixels when rendering using GPU (Closed)
Patch Set: Removing unneeded layout-test Created 3 years, 8 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 | « no previous file | content/test/gpu/gpu_tests/pixel_expectations.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/gpu/pixel_canvas2d_untagged.html
diff --git a/content/test/data/gpu/pixel_canvas2d_untagged.html b/content/test/data/gpu/pixel_canvas2d_untagged.html
new file mode 100644
index 0000000000000000000000000000000000000000..64e9d238c777f7e131583214c2f00a61d6ed0c90
--- /dev/null
+++ b/content/test/data/gpu/pixel_canvas2d_untagged.html
@@ -0,0 +1,48 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<script>
+// This browser pixel test checks if the 2D canvas with no color space tag
+// displays the pixels correctly.
+
+var g_swapsBeforeAck = 15;
+
+function main()
+{
+ draw();
+ waitForFinish();
+}
+
+function draw()
+{
+ var ctx = document.getElementById("c").getContext("2d");
+ var image = ctx.createImageData(257, 257);
+ for(var i = 0 ; i < 257 * 257 ; i++)
+ {
+ image.data[4 * i] = 127;
+ image.data[(4 * i) + 1] = 127;
+ image.data[(4 * i) + 2] = 127;
+ image.data[(4 * i) + 3] = 255;
+ }
+ ctx.putImageData(image, 0, 0);
+}
+
+function waitForFinish()
+{
+ if (g_swapsBeforeAck == 0) {
+ domAutomationController.setAutomationId(1);
+ domAutomationController.send("SUCCESS");
+ } else {
+ g_swapsBeforeAck--;
+ document.getElementById('container').style.zIndex = g_swapsBeforeAck + 1;
+ window.webkitRequestAnimationFrame(waitForFinish);
+ }
+}
+</script>
+</head>
+<body onload="main()">
+<div id="container" style="position:absolute; top:0px; left:0px">
+<canvas id="c" width="257" height="257"></canvas>
+</div>
+</body>
+</html>
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/pixel_expectations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698