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

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

Issue 932553003: Rebaseline after SK_SUPPORT_LEGACY_ADDRRECT removal (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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: 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
deleted file mode 100644
index 944fac2cba57547a83302f438ce53dbadbe54e58..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/borders/border-radius-mask-canvas-padding-expected.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE HTML>
-<html>
- <head>
- <style>
- canvas {
- background-color: gray;
- border-radius: 0px 200px 0px 200px;
- padding: 10px;
- 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