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

Side by Side Diff: LayoutTests/css3/compositing/mix-blend-mode-simple-text.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 div {
6 margin: 20px;
7 width: 60px;
8 height: 60px;
9 color:#00ff00;
10 font: 100%/1 Ahem, monospace;
11 float: left;
12 }
13 </style>
14 <body>
15 <div style="background: green">
16 <div style="mix-blend-mode: normal; background-color: blue;">X X</div>
17 </div>
18 <div style="background: green">
19 <div style="mix-blend-mode: multiply; background-color: blue;">X X</div>
20 </div>
21 <div style="background: green">
22 <div style="mix-blend-mode: screen; background-color: blue;">X X</div>
23 </div>
24 <div style="background: green">
25 <div style="mix-blend-mode: overlay; background-color: blue;">X X</div>
26 </div>
27 <div style="background: green">
28 <div style="mix-blend-mode: darken; background-color: blue;">X X</div>
29 </div>
30 <div style="background: green">
31 <div style="mix-blend-mode: lighten; background-color: blue;">X X</div>
32 </div>
33 <div style="background: green">
34 <div style="mix-blend-mode: color-dodge; background-color: blue;">X X</d iv>
35 </div>
36 <div style="background: green">
37 <div style="mix-blend-mode: color-burn; background-color: blue;">X X</di v>
38 </div>
39 <div style="background: green">
40 <div style="mix-blend-mode: hard-light; background-color: blue;">X X</di v>
41 </div>
42 <div style="background: green">
43 <div style="mix-blend-mode: soft-light; background-color: blue;">X X</di v>
44 </div>
45 <div style="background: green">
46 <div style="mix-blend-mode: difference; background-color: blue;">X X</di v>
47 </div>
48 <div style="background: green">
49 <div style="mix-blend-mode: exclusion; background-color: blue;">X X</div >
50 </div>
51 <div style="background: green">
52 <div style="mix-blend-mode: hue; background-color: blue;">X X</div>
53 </div>
54 <div style="background: green">
55 <div style="mix-blend-mode: saturation; background-color: blue;">X X</di v>
56 </div>
57 <div style="background: green">
58 <div style="mix-blend-mode: color; background-color: blue;">X X</div>
59 </div>
60 <div style="background: green">
61 <div style="mix-blend-mode: luminosity; background-color: blue;">X X</di v>
62 </div>
63 </body>
64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698