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

Unified Diff: LayoutTests/fast/borders/border-radius-mask-canvas-padding-expected.html

Issue 16688004: Large canvas does not honor containing div's border radius (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Replaced explicit baselines with NeedsRebaseline Created 7 years, 3 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/fast/borders/border-radius-mask-canvas-padding-expected.html
diff --git a/LayoutTests/fast/borders/border-radius-mask-canvas-padding-expected.html b/LayoutTests/fast/borders/border-radius-mask-canvas-padding-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..62d558e2ebce208c3629c3743141357e813147fd
--- /dev/null
+++ b/LayoutTests/fast/borders/border-radius-mask-canvas-padding-expected.html
@@ -0,0 +1,29 @@
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <style>
+ canvas {
+ background-color: gray;
+ border-radius: 0px 200px 0px 200px;
+ padding: 10px;
+ -webkit-transform: translateZ(0);
+ }
+ </style>
+ </head>
+ <body>
+ <h3>It passes if:</h3>
+ <ul>
+ <li>the canvas content has rounded corners (bottom-left and top-right)</li>
+ <li>the 10px gray background is visible around the canvas content</li>
+ </ul>
+ <canvas id="theCanvas" width="257" height="257"></canvas>
+ <script>
+ if (window.internals) {
+ internals.settings.setAccelerated2dCanvasEnabled(false);
+ }
+ var context = theCanvas.getContext('2d');
+ context.fillStyle = 'green';
+ context.fillRect(0, 0, theCanvas.width, theCanvas.width);
+ </script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698