image-rendering-border-image.html (639B)
1 <!doctype html> 2 <title>image-rendering applies to border-image</title> 3 <link rel=help href="https://drafts.csswg.org/css-images/#the-image-rendering"> 4 <link rel=help href="https://bugzilla.mozilla.org/show_bug.cgi?id=1716442"> 5 <link rel=author href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> 6 <link rel=author href="https://mozilla.org" title="Mozilla"> 7 <link rel=mismatch href="image-rendering-border-image-notref.html"> 8 <style> 9 div { 10 width: 200px; 11 height: 150px; 12 background-color: black; 13 border: solid 4px; 14 border-image: url(support/small-border.png) 4 / 16px; 15 image-rendering: pixelated; 16 } 17 </style> 18 <div></div>