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

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

Issue 1652813004: Blink is non compliant to the css-backgrounds spec where a border with an image (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased with current master Created 4 years, 10 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
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;
10 } 11 }
11 12
12 div.rr { 13 div.rr {
13 -webkit-border-image: url("resources/border-image.png") 21 30 30 21; 14 -webkit-border-image: url("resources/border-image.png") 21 30 30 21;
14 border-image-repeat: repeat repeat; 15 border-image-repeat: repeat repeat;
15 } 16 }
16 17
17 div.rs { 18 div.rs {
18 -webkit-border-image: url("resources/border-image.png") 21 30 30 21; 19 -webkit-border-image: url("resources/border-image.png") 21 30 30 21;
19 border-image-repeat: repeat stretch; 20 border-image-repeat: repeat stretch;
(...skipping 11 matching lines...) Expand all
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