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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/borders/border-image-01.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: 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-style: solid;
11 border-color: white;
Timothy Loh 2015/11/23 06:23:19 Do we need to add the border-color declarations ev
10 } 12 }
11 13
12 div.rr { 14 div.rr {
13 -webkit-border-image: url("resources/border-image.png") 21 30 30 21 repeat repeat; 15 -webkit-border-image: url("resources/border-image.png") 21 30 30 21 repeat repeat;
14 } 16 }
15 17
16 div.rs { 18 div.rs {
17 -webkit-border-image: url("resources/border-image.png") 21 30 30 21 repeat stretch; 19 -webkit-border-image: url("resources/border-image.png") 21 30 30 21 repeat stretch;
18 } 20 }
19 21
20 div.sr { 22 div.sr {
21 -webkit-border-image: url("resources/border-image.png") 21 30 30 21 stretch repeat; 23 -webkit-border-image: url("resources/border-image.png") 21 30 30 21 stretch repeat;
22 } 24 }
23 25
24 div.ss { 26 div.ss {
25 -webkit-border-image: url("resources/border-image.png") 21 30 30 21 stretch stretch; 27 -webkit-border-image: url("resources/border-image.png") 21 30 30 21 stretch stretch;
26 } 28 }
27 </style> 29 </style>
28 </head> 30 </head>
29 <body> 31 <body>
30 <div class="rr"></div> 32 <div class="rr"></div>
31 <div class="rs"></div> 33 <div class="rs"></div>
32 <br> 34 <br>
33 <div class="sr"></div> 35 <div class="sr"></div>
34 <div class="ss"></div> 36 <div class="ss"></div>
35 </body> 37 </body>
36 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698