Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: third_party/WebKit/LayoutTests/svg/clip-path/clip-path-use-referencing-clipped-text.html

Issue 2560773002: Don't allow <use> <text> references in clip-path fast-path (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698