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

Side by Side Diff: LayoutTests/fast/borders/border-image-fill-inline-no-border-expected.html

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 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 td {
6 padding: 10px;
7 }
8 span {
9 padding: 5px 14px;
10 }
11 .font-size-200 {
12 font-size: 200%;
13 }
14 .font-size-400 {
15 font-size: 400%;
16 }
17 .border-slices {
18 border: 20px solid transparent;
19 border-image: url("resources/button-border.svg") 0 14 0 14 fill;
20 }
21 .no-border-image-cropped {
22 border: 0px none;
23 background-image: url("resources/button-border-cropped.svg");
24 background-size: 100% 100%;
25 }
26 .no-border-image {
27 border: 0px none;
28 background-image: url("resources/button-border.svg");
29 background-size: 100% 100%;
30 }
31 </style>
32 </head>
33 <body>
34 <table>
35 <tr>
36 <td><span class="font-size-200 border-slices">Search</span></td>
37 <td><span class="font-size-200 no-border-image-cropped">Search</span></td>
38 <td><span class="font-size-200 no-border-image">Search</span></td>
39 </tr>
40 <tr>
41 <td><span class="font-size-400 border-slices">Search</span></td>
42 <td><span class="font-size-400 no-border-image-cropped">Search</span></td>
43 <td><span class="font-size-400 no-border-image">Search</span></td>
44 </tr>
45 </table>
46 </body>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698