border-image-width-should-extend-to-padding-ref.html (590B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title> 4 `border-image-width` should extend into padding given an empty border area via `border-style: none` 5 </title> 6 <style> 7 div { 8 width: 136px; 9 height: 136px; 10 margin: 20px; 11 background-color: silver; 12 border-image-source: linear-gradient(blue, orange); 13 border-image-slice: 32; 14 border-image-repeat: repeat; 15 border-style: solid; 16 border-width: 32px; 17 } 18 </style> 19 20 Test passes if a 200x200px (content + padding + border) box with a 32px border-image is rendered. 21 <div></div>