| 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%, #ff0000 50%, #ffff00 75%, #
00ff00 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 | |
| OLD | NEW |