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

Side by Side Diff: LayoutTests/fast/borders/border-image-fill-inline-no-border.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
« no previous file with comments | « no previous file | LayoutTests/fast/borders/border-image-fill-inline-no-border-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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-slices {
22 border: 0px solid transparent;
23 border-image: url("resources/button-border.svg") 0 14 0 14 fill;
24 }
25 .no-border-no-slices {
26 border: 0px solid transparent;
27 border-image: url("resources/button-border.svg") 0 fill;
28 }
29 </style>
30 </head>
31 <body>
32 <table>
33 <tr>
34 <td><span class="font-size-200 border-slices">Search</span></td>
35 <td><span class="font-size-200 no-border-slices">Search</span></td>
36 <td><span class="font-size-200 no-border-no-slices">Search</span></td>
37 </tr>
38 <tr>
39 <td><span class="font-size-400 border-slices">Search</span></td>
40 <td><span class="font-size-400 no-border-slices">Search</span></td>
41 <td><span class="font-size-400 no-border-no-slices">Search</span></td>
42 </tr>
43 </table>
44 </body>
45 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/borders/border-image-fill-inline-no-border-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698