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

Side by Side Diff: LayoutTests/fast/borders/resources/button-border.svg

Issue 1159773005: Handle border-image with fill and zero-width borders (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address review comment Created 5 years, 6 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
OLDNEW
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="48" pre serveAspectRatio="none">
2 <defs>
3 <clipPath id="upperClip">
4 <rect width="100%" height="50%"/>
5 </clipPath>
6 <clipPath id="lowerClip">
7 <rect y="50%" width="100%" height="50%"/>
8 </clipPath>
9 </defs>
10 <rect x="0" y="0" width="32" height="48" fill="#808080" shape-rendering="crisp Edges"/>
11 <rect x="2" y="2" width="28" height="44" fill="#D0D0D0" shape-rendering="crisp Edges" clip-path="url(#upperClip)"/>
12 <rect x="2" y="2" width="28" height="44" fill="#C0C0C0" shape-rendering="crisp Edges" clip-path="url(#lowerClip)"/>
13 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698