Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / blending / background-blend-mode-default-value.html
blob5c982565fb959865689835e66dacaeb5fae915b2
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;
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>