Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../resources/ahem.js"></script> | |
| 3 <svg> | |
| 4 <defs> | |
| 5 <clipPath id="textclip"> | |
| 6 <rect width="100" height="100"/> | |
| 7 </clipPath> | |
| 8 <text id="text" y="80" font-size="100" font-family="Ahem" clip-path="url(#te xtclip)">PASS</text> | |
| 9 <clipPath id="clip"> | |
| 10 <use xlink:href="#text"/> | |
| 11 </clipPath> | |
| 12 </defs> | |
| 13 <rect width="400" height="200" fill="green" clip-path="url(#clip)"/> | |
| 14 </svg> | |
| OLD | NEW |