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

Side by Side Diff: LayoutTests/css3/compositing/effect-background-blend-mode-tiled.html

Issue 14208013: Addding support for -webkit-background-blend-mode to blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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 <script>
3 if (window.testRunner) {
4 window.testRunner.overridePreference("WebKitAcceleratedCompositingEnabled" , "0");
5 }
6 if (window.testRunner)
7 window.testRunner.dumpAsText(true);
8 </script>
9 <style>
10
11 li
12 {
13 margin: 5px;
14 width: 130px;
15 height: 130px;
16 background: url("resources/ducky.png") 0 0 /50% 50%, linear-gradient(to right, #00ffff 0%, rgba(0,0,255,0) 24%, #ff0000 50%, #ffff00 75%, #00ff00 100%) 0 0 /100% 100%;
17 display: block;
18 float: left;
19 }
20 </style>
21 <!-- this file should contain a duck on top of a gradient with every type of ble nding -->
22 <body style="background-color: green">
23 <ul>
24 <li style="background-blend-mode: normal, normal"></li>
25 <li style="background-blend-mode: multiply, normal"></li>
26 <li style="background-blend-mode: screen, normal"></li>
27 <li style="background-blend-mode: overlay, normal; opacity:.9"></li>
28 <li style="background-blend-mode: darken, normal"></li>
29 <li style="background-blend-mode: lighten, normal"></li>
30 <li style="background-blend-mode: color-dodge, normal"></li>
31 <li style="background-blend-mode: color-burn, normal"></li>
32 <li style="background-blend-mode: hard-light, normal"></li>
33 <li style="background-blend-mode: soft-light, normal"></li>
34 <li style="background-blend-mode: difference, normal"></li>
35 <li style="background-blend-mode: exclusion, normal"></li>
36 <li style="background-blend-mode: hue, normal;"></li>
37 <li style="background-blend-mode: saturation, normal"></li>
38 <li style="background-blend-mode: color, normal"></li>
39 <li style="background-blend-mode: luminosity, normal"></li>
40 </ul>
41 </body>
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698