Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / clip-synthetic-node.html
blob6ad3b8e20ab0cd68e149cbb8178e14e27e8532ea
1 <!DOCTYPE html>
2 <html>
3 <!-- Test for http://crbug.com/264492 -->
4 <head>
5 <style>
6 #clipped:first-letter {
7 -webkit-clip-path: url(#c2);
9 </style>
10 </head>
11 <body>
12 <svg width="100" height="100">
13 <clipPath id="c2" clipPathUnits="objectBoundingBox">
14 <rect width="100%" height="100%"/>
15 </clipPath>
16 </svg>
17 <div id="clipped">PASS: did not crash.</div>
18 </body>
19 </html>