Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / blending / svg-isolation-add-clipper.html
blob66fa413b2a323c1458f0c866e9aee4694b8a6b22
1 <!DOCTYPE HTML>
2 <html>
3 <script>
4 if (window.testRunner)
5 window.testRunner.waitUntilDone();
6 function addIsolation() {
7 var isolator = document.getElementById('isolator');
8 isolator.setAttribute('clip-path', 'url(#Clipper)');
9 if (window.testRunner)
10 window.testRunner.notifyDone();
12 window.addEventListener('load', function () {
13 window.setTimeout(addIsolation, 10);
14 }, false);
15 </script>
16 <body>
17 <p>The test passes if you see a green square.</p>
18 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200px" height="200px">
19 <defs>
20 <clipPath id="Clipper">
21 <rect x="0" y="0" width="100" height="100" />
22 </clipPath>
23 </defs>
24 <g id="isolator">
25 <rect x="0" y="0" width="200" height="200" style="fill: green; mix-blend-mode: difference;"/>
26 </g>
27 </svg>
28 </body>
29 </html>