Upstream version 10.38.222.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / css3 / blending / background-blend-mode-gif-color-2.html
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5     div {
6         width: 130px;
7         height: 130px;
8         background: url('resources/squares.gif'), green;
9         float: left;
10         margin: 5px;
11     }
12 </style>
13 <script type="text/javascript">
14     if (window.testRunner)
15         window.testRunner.waitUntilDone();
16
17     function done() {
18         if (window.testRunner)
19             window.testRunner.notifyDone();
20     }
21
22 </script>
23 </head>
24 <!-- This file should contain a gif on top of a background color with every type of blending. -->
25 <body>
26     <div style="background-blend-mode: normal, normal"></div>
27     <div style="background-blend-mode: multiply, normal"></div>
28     <div style="background-blend-mode: screen, normal"></div>
29     <div style="background-blend-mode: darken, normal"></div>
30     <div style="background-blend-mode: lighten, normal"></div>
31     <div style="background-blend-mode: color-dodge, normal"></div>
32     <div style="background-blend-mode: color-burn, normal"></div>
33     <div style="background-blend-mode: hard-light, normal"></div>
34     <div style="background-blend-mode: soft-light, normal"></div>
35     <div style="background-blend-mode: difference, normal"></div>
36     <div style="background-blend-mode: exclusion, normal"></div>
37     <div style="background-blend-mode: hue, normal;"></div>
38     <div style="background-blend-mode: saturation, normal"></div>
39     <div style="background-blend-mode: color, normal"></div>
40     <div style="background-blend-mode: luminosity, normal"></div>
41     <script type="text/javascript">
42         window.setTimeout("done()", 400);
43     </script>
44 </body>
45 </html>