1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/border-image/side-scaling-1v.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<!doctype html> 1.5 +<html><head> 1.6 +<title>border-image: repeat with zero-width left and right</title> 1.7 +<style> 1.8 +span { 1.9 + display: inline-block; 1.10 + margin: 5px; 1.11 + box-sizing: border-box; 1.12 + width: 13px; 1.13 + border-style: solid; 1.14 + border-color: transparent; 1.15 + border-width: 10px 0; 1.16 + border-image: url("roundrectbutton.png") 10 0 repeat; 1.17 +} 1.18 +</style> 1.19 +</head><body> 1.20 +<p> 1.21 +<span style="height:24px"></span> 1.22 +<span style="height:25px"></span> 1.23 +<span style="height:26px"></span> 1.24 +<span style="height:27px"></span> 1.25 +<span style="height:28px"></span> 1.26 +<span style="height:30px"></span> 1.27 +<span style="height:35px"></span> 1.28 +<span style="height:40px"></span> 1.29 +<span style="height:50px"></span> 1.30 +</p> 1.31 +</body></html>