| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML> | |
| 2 <script> | |
| 3 if (window.testRunner) { | |
| 4 window.testRunner.overridePreference("WebKitAcceleratedCompositingEnable
d", "1"); | |
| 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
-gradient(to right, #00ffff 0%, rgba(0,0,255,0) 24%, rgba(1,0,0,0) 50%, #ffff00
75%, #00ff00 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(.01px,.01px, 01px)"></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> | |
| 33 | |
| OLD | NEW |