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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/borders/border-image-longhand.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 margin: 10px; 8 margin: 10px;
9 display: inline-block; 9 display: inline-block;
10 border-image-source: url("resources/border-image.png"); 10 border-image-source: url("resources/border-image.png");
11 border-image-slice: 21 30 30 21 fill; 11 border-image-slice: 21 30 30 21 fill;
12 border-image-width: 1; 12 border-image-width: 1;
13 border-style: solid;
13 } 14 }
14 15
15 div.rr { 16 div.rr {
16 border-image-repeat: repeat; 17 border-image-repeat: repeat;
17 } 18 }
18 19
19 div.rs { 20 div.rs {
20 border-image-repeat: repeat stretch; 21 border-image-repeat: repeat stretch;
21 } 22 }
22 23
23 div.sr { 24 div.sr {
24 border-image-repeat:stretch repeat; 25 border-image-repeat:stretch repeat;
25 } 26 }
26 27
27 div.ss { 28 div.ss {
28 border-image-repeat: stretch; 29 border-image-repeat: stretch;
29 } 30 }
30 </style> 31 </style>
31 </head> 32 </head>
32 <body> 33 <body>
33 <div class="rr"></div> 34 <div class="rr"></div>
34 <div class="rs"></div> 35 <div class="rs"></div>
35 <br> 36 <br>
36 <div class="sr"></div> 37 <div class="sr"></div>
37 <div class="ss"></div> 38 <div class="ss"></div>
38 </body> 39 </body>
39 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698