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

Side by Side Diff: LayoutTests/css3/compositing/mix-blend-mode-isolated-group-2.html

Issue 23503046: [CSS Blending] Implement mix-blend-mode in software. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5
6 body {
7 background: blue;
8 }
9
10 div {
11 margin: 20px;
12 width: 130px;
13 height: 130px;
14 }
15
16 .parent {
17 position: relative;
18 z-index: -1;
19 float: left;
20 background: violet;
21 }
22
23 .child {
24 background: url('resources/ducky.png') no-repeat 0 0 /100% 100%, green;
25 }
26
27 </style>
28 <body>
29 <div class="parent">
30 <div class="child" style="mix-blend-mode: normal;"></div>
31 </div>
32 <div class="parent">
33 <div class="child" style="mix-blend-mode: multiply;"></div>
34 </div>
35 <div class="parent">
36 <div class="child" style="mix-blend-mode: screen;"></div>
37 </div>
38 <div class="parent">
39 <div class="child" style="mix-blend-mode: overlay;"></div>
40 </div>
41 <div class="parent">
42 <div class="child" style="mix-blend-mode: darken;"></div>
43 </div>
44 <div class="parent">
45 <div class="child" style="mix-blend-mode: lighten;"></div>
46 </div>
47 <div class="parent">
48 <div class="child" style="mix-blend-mode: color-dodge;"></div>
49 </div>
50 <div class="parent">
51 <div class="child" style="mix-blend-mode: color-burn;"></div>
52 </div>
53 <div class="parent">
54 <div class="child" style="mix-blend-mode: hard-light;"></div>
55 </div>
56 <div class="parent">
57 <div class="child" style="mix-blend-mode: soft-light;"></div>
58 </div>
59 <div class="parent">
60 <div class="child" style="mix-blend-mode: difference;"></div>
61 </div>
62 <div class="parent">
63 <div class="child" style="mix-blend-mode: exclusion;"></div>
64 </div>
65 <div class="parent">
66 <div class="child" style="mix-blend-mode: hue;"></div>
67 </div>
68 <div class="parent">
69 <div class="child" style="mix-blend-mode: saturation;"></div>
70 </div>
71 <div class="parent">
72 <div class="child" style="mix-blend-mode: color;"></div>
73 </div>
74 <div class="parent">
75 <div class="child" style="mix-blend-mode: luminosity;"></div>
76 </div>
77 </body>
78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698