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: third_party/WebKit/LayoutTests/css3/masking/mask-luminance-svg-expected.html

Issue 2447013005: Revert of Turn on Analytic AA in Chrome (Closed)
Patch Set: Created 4 years, 2 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: third_party/WebKit/LayoutTests/css3/masking/mask-luminance-svg-expected.html
diff --git a/third_party/WebKit/LayoutTests/css3/masking/mask-luminance-svg-expected.html b/third_party/WebKit/LayoutTests/css3/masking/mask-luminance-svg-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..dd6bd2717be2198261b4035ead064450583bbb59
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/css3/masking/mask-luminance-svg-expected.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <style>
+ #back {
+ width: 1000px;
+ height: 600px;
+ background-color: green;
+ }
+ #front {
+ width: 800px;
+ height: 400px;
+ background-color: red;
+ border: 50px solid blue;
+ padding: 50px;
+ -webkit-mask-image: url(resources/circle-alpha.svg);
+ mask-source-type: alpha;
+ -webkit-mask-size: 200px auto;
+ -webkit-mask-repeat: repeat;
+ -webkit-mask-origin: border-box;
+ -webkit-mask-clip: border-box;
+ }
+ </style>
+ </head>
+
+ <body>
+ <div id="back">
+ <div id="front" />
+ </div>
+ </body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698