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

Unified Diff: LayoutTests/css3/compositing/svg-blend-overlapping-elements.html

Issue 98543012: [CSS Blending] SVG overlapping elements within a group don't blend together. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comment test description Created 6 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/css3/compositing/svg-blend-overlapping-elements-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/compositing/svg-blend-overlapping-elements.html
diff --git a/LayoutTests/css3/compositing/svg-blend-overlapping-elements.html b/LayoutTests/css3/compositing/svg-blend-overlapping-elements.html
new file mode 100644
index 0000000000000000000000000000000000000000..dbf7944b38f507adb12a5d299ad96860629b87a2
--- /dev/null
+++ b/LayoutTests/css3/compositing/svg-blend-overlapping-elements.html
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML>
+<html>
+ <body>
+ <!-- Test mix-blend-mode on a group consisting of overlapping elements.
+ The two rects should blend as a whole with the yellow background.
+ Test passes if the two rectangles are drawn with green, and their intersection is not blended.-->
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200px" height="200px" style="background: #FF0">
+ <g style="mix-blend-mode: difference;">
+ <rect x="25" y="25" width="100" height="100" style="fill: #F70;"/>
+ <rect x="75" y="75" width="100" height="100" style="fill: #FA0;"/>
+ </g>
+ </svg>
+ </body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/css3/compositing/svg-blend-overlapping-elements-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698