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

Unified Diff: LayoutTests/compositing/draws-content/canvas-simple-background.html

Issue 19543014: Direct composite canvas background if possible. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: resolved layout test failures Created 7 years, 5 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: LayoutTests/compositing/draws-content/canvas-simple-background.html
diff --git a/LayoutTests/compositing/draws-content/canvas-simple-background.html b/LayoutTests/compositing/draws-content/canvas-simple-background.html
new file mode 100644
index 0000000000000000000000000000000000000000..7c4aa19b45dbb50fb3e584c930ad670a960c8dd7
--- /dev/null
+++ b/LayoutTests/compositing/draws-content/canvas-simple-background.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style type="text/css">
+ .container {
+ width: 60px;
+ height: 60px;
+ }
+ #canvas-simple {
+ /* No box decorations or background image. */
+ /* Solid color background only. */
+ background-color: green;
+ }
+ </style>
+ <script>
+ function drawCanvas(canvasID) {
+ var canvas = document.getElementById(canvasID);
+ var context = canvas.getContext("2d");
+
+ // Fill NW quadrant with opaque blue.
+ context.fillStyle = "#0000FF";
+ context.fillRect(0, 0, canvas.width / 2, canvas.height / 2);
+ };
+
+ function doTest() {
+ // Simple background can be direct-composited with content-layer.
+ // The container GraphicsLayer does not paint anything.
+ drawCanvas('canvas-simple');
+ };
+ window.addEventListener('load', doTest, false);
+ </script>
+ </head>
+
+ <body>
+ <div class="container">
+ <canvas id="canvas-simple" width="50" height="50"></canvas>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698