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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/clip-path/clip-path-use-referencing-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 <text id="text" y="80" font-size="100" font-family="Ahem">X</text>
6 <clipPath id="clip">
7 <use xlink:href="#text"/>
8 </clipPath>
9 </defs>
10 <rect width="200" height="100" fill="green" clip-path="url(#clip)"/>
11 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698