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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/borders/border-image-outset.html

Issue 1457323004: Don't render border images when border-style is none (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased, removed unnecessary border colors, etc. Created 5 years 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 div { 4 div {
5 border-width: 21px 30px 30px 21px; 5 border-width: 21px 30px 30px 21px;
6 width: 75px; 6 width: 75px;
7 height: 75px; 7 height: 75px;
8 display: inline-block; 8 display: inline-block;
9 border-image-source: url("resources/border-image.png"); 9 border-image-source: url("resources/border-image.png");
10 border-image-slice: 21 30 30 21 fill; 10 border-image-slice: 21 30 30 21 fill;
11 border-image-width: 1; 11 border-image-width: 1;
12 border-image-outset: 1; 12 border-image-outset: 1;
13 margin:30px; 13 margin:30px;
14 border-style: solid;
14 } 15 }
15 16
16 div.rr { 17 div.rr {
17 border-image-repeat: repeat; 18 border-image-repeat: repeat;
18 } 19 }
19 20
20 div.rs { 21 div.rs {
21 border-image-repeat: repeat stretch; 22 border-image-repeat: repeat stretch;
22 } 23 }
23 24
24 div.sr { 25 div.sr {
25 border-image-repeat:stretch repeat; 26 border-image-repeat:stretch repeat;
26 } 27 }
27 28
28 div.ss { 29 div.ss {
29 border-image-repeat: stretch; 30 border-image-repeat: stretch;
30 } 31 }
31 </style> 32 </style>
32 </head> 33 </head>
33 <body> 34 <body>
34 <div class="rr"></div> 35 <div class="rr"></div>
35 <div class="rs"></div> 36 <div class="rs"></div>
36 <br> 37 <br>
37 <div class="sr"></div> 38 <div class="sr"></div>
38 <div class="ss"></div> 39 <div class="ss"></div>
39 </body> 40 </body>
40 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698