Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / blending / background-blend-mode-single-accelerated-element.html
blob45a3573f3e52e97861d8606ff121c7bd865d64d7
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5 div {
6 width: 200px;
7 height: 200px;
8 transform: rotateY(30deg) rotateX(-30deg);
9 background: url("resources/white_square.svg") no-repeat, rgba(55, 55, 99, 1);
10 background-blend-mode: difference;
13 body {
14 background: green;
17 </style>
18 <!-- Test to validate that background blending is working properly for hardware accelerated elements.
19 This also validates that background layers don't blend with any of the content below the accelerated element. -->
20 </head>
21 <body>
22 <div></div>
23 </body>