Upstream version 10.38.222.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / css3 / compositing / svg-isolation-default.html
1 <!DOCTYPE HTML>
2 <!-- Test the default behaviour of isolation with two simple elements. The test passes if the small square is drawn with black (blending is performed since the element is not isolated). -->
3 <html>
4     <body>
5         <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="400px" height="400px" style="background: green">
6             <g style="isolation: auto">
7                 <rect x="100" y="100" width="200" height="200" style="fill: blue; mix-blend-mode: multiply"/>
8             </g>
9         </svg>
10     </body>
11 </html>