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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/borders/scaled-border-image.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 <style> 1 <style>
2 div { 2 div {
3 border-width: 21px 30px 30px 21px; 3 border-width: 21px 30px 30px 21px;
4 width: 75px; 4 width: 75px;
5 height: 75px; 5 height: 75px;
6 margin: 10px; 6 margin: 10px;
7 border-image-source: url(resources/border-image.png); 7 border-image-source: url(resources/border-image.png);
8 border-image-slice: 21 30 30 21 fill; 8 border-image-slice: 21 30 30 21 fill;
9 border-image-width: 1; 9 border-image-width: 1;
10 border-image-repeat: repeat; 10 border-image-repeat: repeat;
11 border-style: solid;
11 } 12 }
12 </style> 13 </style>
13 <div></div> 14 <div></div>
14 This should look like the above, only scaled up by a factor of 2: 15 This should look like the above, only scaled up by a factor of 2:
15 <div style="zoom: 2;"></div> 16 <div style="zoom: 2;"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698