Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / blending / svg-isolation-add-masking-expected.html
blob468e3f3b4e6027aa38673f85edd559c83cbee60a
1 <!DOCTYPE HTML>
2 <html>
3 <body>
4 <p>The test passes if you see a green square.</p>
5 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200px" height="200px">
6 <defs>
7 <mask id="Mask">
8 <rect x="0" y="0" width="100" height="100" fill="white" />
9 </mask>
10 </defs>
11 <g id="isolator" mask="url(#Mask)">
12 <rect x="0" y="0" width="200" height="200" style="fill: green;"/>
13 </g>
14 </svg>
15 </body>
16 </html>