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

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: 130px;
8 height: 130px;
9 color:#00ff00;
10 float: left;
11 }
12 </style>
13 <body>
14 <div style="background: green">
15 <div style="mix-blend-mode: normal; background-color: blue;">The quick b rown fox jumps over the lazy dog</div>
Julien - ping for review 2013/10/03 21:38:28 Can we at least use Ahem with a line-height to hav
16 </div>
17 <div style="background: green">
18 <div style="mix-blend-mode: multiply; background-color: blue;">The quick brown fox jumps over the lazy dog</div>
19 </div>
20 <div style="background: green">
21 <div style="mix-blend-mode: screen; background-color: blue;">The quick b rown fox jumps over the lazy dog</div>
22 </div>
23 <div style="background: green">
24 <div style="mix-blend-mode: overlay; background-color: blue;">The quick brown fox jumps over the lazy dog</div>
25 </div>
26 <div style="background: green">
27 <div style="mix-blend-mode: darken; background-color: blue;">The quick b rown fox jumps over the lazy dog</div>
28 </div>
29 <div style="background: green">
30 <div style="mix-blend-mode: lighten; background-color: blue;">The quick brown fox jumps over the lazy dog</div>
31 </div>
32 <div style="background: green">
33 <div style="mix-blend-mode: color-dodge; background-color: blue;">The qu ick brown fox jumps over the lazy dog</div>
34 </div>
35 <div style="background: green">
36 <div style="mix-blend-mode: color-burn; background-color: blue;">The qui ck brown fox jumps over the lazy dog</div>
37 </div>
38 <div style="background: green">
39 <div style="mix-blend-mode: hard-light; background-color: blue;">The qui ck brown fox jumps over the lazy dog</div>
40 </div>
41 <div style="background: green">
42 <div style="mix-blend-mode: soft-light; background-color: blue;">The qui ck brown fox jumps over the lazy dog</div>
43 </div>
44 <div style="background: green">
45 <div style="mix-blend-mode: difference; background-color: blue;">The qui ck brown fox jumps over the lazy dog</div>
46 </div>
47 <div style="background: green">
48 <div style="mix-blend-mode: exclusion; background-color: blue;">The quic k brown fox jumps over the lazy dog</div>
49 </div>
50 <div style="background: green">
51 <div style="mix-blend-mode: hue; background-color: blue;">The quick brow n fox jumps over the lazy dog</div>
52 </div>
53 <div style="background: green">
54 <div style="mix-blend-mode: saturation; background-color: blue;">The qui ck brown fox jumps over the lazy dog</div>
55 </div>
56 <div style="background: green">
57 <div style="mix-blend-mode: color; background-color: blue;">The quick br own fox jumps over the lazy dog</div>
58 </div>
59 <div style="background: green">
60 <div style="mix-blend-mode: luminosity; background-color: blue;">The qui ck brown fox jumps over the lazy dog</div>
61 </div>
62 </body>
63 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698