Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / css3 / blending / background-blend-mode-default-value.html
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5     div {
6         background: url('resources/ducky.png') no-repeat 0 0 /100% 100%, linear-gradient(to right, white 0%, gray 100%), green;
7         width: 200px;
8         height: 200px;
9         margin: 10px;
10     }
11 </style>
12 <!-- Test whether default blend mode values are set for the unspecified layers in background-blend-mode. -->
13 </head>
14 <body>
15     <div style="background-blend-mode: normal;"></div>
16     <div style="background-blend-mode: difference;"></div>
17 </body>
18 </html>