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

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

Issue 1752083003: mac: Use IOSurfaces in Canvas2DLayerBridge. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp36_canvas2d_refactor
Patch Set: Rebase. Group macros. Created 4 years, 9 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/pixel_canvas2d_accelerated.html
diff --git a/content/test/data/gpu/pixel_canvas2d.html b/content/test/data/gpu/pixel_canvas2d_accelerated.html
similarity index 80%
copy from content/test/data/gpu/pixel_canvas2d.html
copy to content/test/data/gpu/pixel_canvas2d_accelerated.html
index 7ebbad95aaf8ff2b8700b277395bc351e01a207a..700179c70653036bc4bfec8d72ef11228c09497d 100644
--- a/content/test/data/gpu/pixel_canvas2d.html
+++ b/content/test/data/gpu/pixel_canvas2d_accelerated.html
@@ -8,7 +8,7 @@ that the baseline images are regenerated on the next run.
<html>
<head>
-<title>Canvas 2D Test: Red Box over Black Background</title>
+<title>Accelerated Canvas 2D Test: Red Box over Black Background</title>
<style type="text/css">
.nomargin {
margin: 0px auto;
@@ -46,10 +46,13 @@ function waitForFinish()
</script>
</head>
<body onload="main()">
-<div style="position:relative; width:200px; height:200px; background-color:black">
+<div style="position:relative; width:300px; height:300px; background-color:black">
</div>
<div id="container" style="position:absolute; top:0px; left:0px">
-<canvas id="c" width="200" height="200" class="nomargin"></canvas>
+<!--
+Canvas acceleration requires that the canvas be at least 256x257.
+-->
+<canvas id="c" width="300" height="300" class="nomargin"></canvas>
</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698