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

Side by Side Diff: LayoutTests/css3/compositing/mix-blend-mode-simple.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: 130px;
8 height: 130px;
Julien - ping for review 2013/10/03 21:38:28 DRT only dumps about 800px of height so I would ex
9 float: left;
10 }
11 </style>
12 <body>
13 <div style="background: green">
14 <div style="mix-blend-mode: normal; background-color: blue;"></div>
15 </div>
16 <div style="background: green">
17 <div style="mix-blend-mode: multiply; background-color: blue;"></div>
18 </div>
19 <div style="background: green">
20 <div style="mix-blend-mode: screen; background-color: blue;"></div>
21 </div>
22 <div style="background: green">
23 <div style="mix-blend-mode: overlay; background-color: blue;"></div>
24 </div>
25 <div style="background: green">
26 <div style="mix-blend-mode: darken; background-color: blue;"></div>
27 </div>
28 <div style="background: green">
29 <div style="mix-blend-mode: lighten; background-color: blue;"></div>
30 </div>
31 <div style="background: green">
32 <div style="mix-blend-mode: color-dodge; background-color: blue;"></div>
33 </div>
34 <div style="background: green">
35 <div style="mix-blend-mode: color-burn; background-color: blue;"></div>
36 </div>
37 <div style="background: green">
38 <div style="mix-blend-mode: hard-light; background-color: blue;"></div>
39 </div>
40 <div style="background: green">
41 <div style="mix-blend-mode: soft-light; background-color: blue;"></div>
42 </div>
43 <div style="background: green">
44 <div style="mix-blend-mode: difference; background-color: blue;"></div>
45 </div>
46 <div style="background: green">
47 <div style="mix-blend-mode: exclusion; background-color: blue;"></div>
48 </div>
49 <div style="background: green">
50 <div style="mix-blend-mode: hue; background-color: blue;"></div>
51 </div>
52 <div style="background: green">
53 <div style="mix-blend-mode: saturation; background-color: blue;"></div>
54 </div>
55 <div style="background: green">
56 <div style="mix-blend-mode: color; background-color: blue;"></div>
57 </div>
58 <div style="background: green">
59 <div style="mix-blend-mode: luminosity; background-color: blue;"></div>
60 </div>
61 </body>
62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698