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

Unified Diff: LayoutTests/css3/masking/mask-luminance-gradient-expected.html

Issue 23947005: Implement CSS luminance masking using skia SkLumaMaskXfermode class. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/css3/masking/mask-luminance-gradient-expected.html
diff --git a/LayoutTests/css3/masking/mask-repeat-round-auto1-expected.html b/LayoutTests/css3/masking/mask-luminance-gradient-expected.html
similarity index 77%
copy from LayoutTests/css3/masking/mask-repeat-round-auto1-expected.html
copy to LayoutTests/css3/masking/mask-luminance-gradient-expected.html
index 4e8a6fcae01f9901b112da28df1bd9745c59ae1f..c1024c8f3b6fa060d7c56e67f6b95a208a4d69b0 100644
--- a/LayoutTests/css3/masking/mask-repeat-round-auto1-expected.html
+++ b/LayoutTests/css3/masking/mask-luminance-gradient-expected.html
@@ -13,8 +13,9 @@
background-color: red;
border: 50px solid blue;
padding: 50px;
- -webkit-mask-image: url(resources/circle.png);
- -webkit-mask-size: 100px 79px;
+ -webkit-mask-image: linear-gradient(45deg, black, transparent 100%);
+ mask-source-type: alpha;
+ -webkit-mask-size: 200px auto;
-webkit-mask-repeat: repeat;
-webkit-mask-origin: border-box;
-webkit-mask-clip: border-box;
@@ -26,6 +27,6 @@
<div id="back">
<div id="front" />
</div>
- </body>
+ </body>
</html>

Powered by Google App Engine
This is Rietveld 408576698