Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML> | |
| 2 <html> | |
| 3 <body> | |
| 4 <p>Test mix-blend-mode on a group consisting of overlapping elements. <b r/> | |
|
Stephen Chennney
2013/12/30 16:31:54
Could you change this to be a comment rather than
| |
| 5 The two rects should blend as a whole with the yellow background. <b r/> | |
| 6 Test passes if the two rectangles are drawn with green, and their in tersection is not blended. | |
| 7 </p> | |
| 8 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200px" heig ht="200px" style="background: #FF0"> | |
| 9 <g style="mix-blend-mode: difference;"> | |
| 10 <rect x="25" y="25" width="100" height="100" style="fill: #F70;" /> | |
| 11 <rect x="75" y="75" width="100" height="100" style="fill: #FA0;" /> | |
| 12 </g> | |
| 13 </svg> | |
| 14 </body> | |
| 15 </html> | |
| OLD | NEW |