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

Unified Diff: LayoutTests/fast/borders/border-radius-mask-canvas-all-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-all-expected.html
diff --git a/LayoutTests/fast/borders/border-radius-mask-canvas-all-expected.html b/LayoutTests/fast/borders/border-radius-mask-canvas-all-expected.html
deleted file mode 100644
index 20addad5516d2f3c4849f11e40ccf31e9395f508..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/borders/border-radius-mask-canvas-all-expected.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE HTML>
-<html>
- <head>
- <style>
- canvas {
- background-color: gray;
- border-radius: 40px 200px 10px 200px;
- padding: 10px;
- margin: 20px;
- border: 5px solid red;
- transform: translateZ(0);
- }
- </style>
- </head>
- <body>
- <h3>It passes if:</h3>
- <ul>
- <li>the 10px gray background is visible around the canvas content</li>
- <li>has 5px solid red border</li>
- <li>all the corners for border and padding are rounded</li>
- <li>the bottom right corner of canvas content is NOT rounded</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>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/borders/border-radius-mask-canvas-padding-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698