border-image-repeat-space-8z.html (1153B)
1 <!doctype html> 2 <html reftest-zoom="0.6"> 3 <title>CSS Border Image: border-image-repeat:space with non-initial border-image-width</title> 4 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 5 <link rel="help" href="https://www.w3.org/TR/css3-background/#the-border-image-repeat"> 6 <link rel="match" href="border-image-repeat-space-8z-ref.html"> 7 <meta name="assert" content="An explicit 'border-image-width' which is exactly the same size as 'border-width' should render the same as 'border-image-width:1' (the initial value)."> 8 9 <!-- NOTE: this is a copy of /css/css-backgrounds/border-image-repeat-space-8.html with an added "reftest-zoom" --> 10 11 <style> 12 div { 13 border: 27px solid; 14 border-image: url("border.png") 27 space; 15 border-image-width: 27px; 16 } 17 </style> 18 19 <div style="width: 505px; height: 50px"></div> 20 <div style="width: 475px; height: 0px"></div> 21 <div style="width: 475px; height: 1px"></div> 22 <div style="width: 26px; height: 26px"></div> 23 <div style="width: 53px; height: 53px"></div> 24 <div style="width: 55px; height: 55px"></div> 25 <div style="width: 505px; height: 50px; writing-mode: vertical-rl"></div> 26 27 </html>