Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML> | |
| 2 <svg width="500px" height="500px"> | |
| 3 <defs> | |
| 4 <clipPath id="clipper" clipPathUnits="userSpaceOnUse"> | |
| 5 <text id="test" x="0" y="4" font-size="1">P</text> | |
| 6 <text id="test" x="2" y="4" font-size="2">A</text> | |
| 7 <text id="test" x="4" y="4" font-size="4">S</text> | |
| 8 <text id="test" x="6" y="4" font-size="6">S</text> | |
| 9 </clipPath> | |
| 10 </defs> | |
| 11 <rect width="10px" height="10px" fill="green" clip-path="url(#clipper)" transf orm="scale(50)"></rect> | |
| 12 </svg> | |
| OLD | NEW |