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

Side by Side Diff: LayoutTests/css3/compositing/effect-background-blend-mode-stacking.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") no-repeat 0 0 /100% 100%, linear-gradie nt(to right, #00ffff 0%, rgba(0,0,255,0) 24%, rgba(1,0,0,0) 50%, #ffff00 75%, #0 0ff00 100%);
17 background-blend-mode: exclusion, normal;
18 display: block;
19 float: left;
20 }
21 </style>
22 <!-- this file should contain a duck on top of a gradient with every type of ble nding -->
23 <body style="background-color: red">
24 <ul>
25 <li style=""></li>
26 <li style="opacity: .9"></li>
27 <li style="-webkit-transform: scale(1.01, 1.01)"></li>
28 <li style="-webkit-transform: translate3d(1px, 1px, 1px)"></li>
29 <li style="-webkit-box-reflect:below 5px linear-gradient(to bottom, transparent 0%, transparent 50%, white 100%);"></li>
30 <li style="position: fixed; top: 160px;"></li>
31 </ul>
32 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698