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

Side by Side Diff: LayoutTests/svg/custom/pattern-in-defs.svg

Issue 453653003: [SVG] DisplayList-based patterns. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 9 tests marked for rebaseline Created 6 years, 4 months 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 | Annotate | Revision Log
OLDNEW
1 <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"> 1 <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100">
2 <defs> 2 <defs>
3 <pattern id="green" x="0" y="0" width="100" height="100"> 3 <pattern id="green" x="0" y="0" width="100" height="100" patternUnits="userS paceOnUse">
Erik Dahlström (inactive) 2014/08/08 08:01:02 I'm curious, why was this change needed?
f(malita) 2014/08/08 15:30:35 Before I've added tile clamping in Skia, the defau
4 <rect x="0" y="0" width="100" height="100" fill="green"/> 4 <rect x="0" y="0" width="100" height="100" fill="green"/>
5 </pattern> 5 </pattern>
6 </defs> 6 </defs>
7 <rect x="0" y="0" width="100" height="100" fill="red" /> 7 <rect x="0" y="0" width="100" height="100" fill="red" />
8 <rect x="0" y="0" width="100" height="100" fill="url(#green)" /> 8 <rect x="0" y="0" width="100" height="100" fill="url(#green)" />
9 </svg> 9 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698