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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/clip-path/nested-empty-clip.html

Issue 2555483003: Don't fail clip-paths with empty bounds (Closed)
Patch Set: Add SPv2 expectation 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 <svg>
3 <clipPath id="nested">
4 <path d="M0,0h100z"/>
5 </clipPath>
6 <clipPath id="clip" clip-path="url(#nested)">
7 <rect width="100" height="100"/>
8 </clipPath>
9 <rect width="100" height="100" fill="green"/>
10 <rect width="200" height="100" fill="red" clip-path="url(#clip)"/>
11 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698