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

Side by Side Diff: LayoutTests/fast/borders/border-image-fill-no-border-width.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: Remove newly added but flaky test 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>
pdr. 2015/06/02 03:07:56 I like this test but can you add the other tests f
2 <head>
3 <title>Test that border-image is drawn even though border width is zero</title >
4 <style>
5 body { margin: 0; }
6 div {
7 border-width: 0px;
8 border-style: solid;
9 height: 76px;
10 width: 76px;
11 background-color: red;
12 border-image-source: url('resources/border-image.png');
13 border-image-slice: 0 fill;
14 }
15 </style>
16 </head>
17 <body>
18 <div></div>
19 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698