gecko-dev/layout/reftests/border-image/svg-as-border-image-4b.html
Louis Chang 4440d60ddb Bug 1290782 Part 3 - Add test cases for using an SVG image as border-image. r=cjku,dholbert
MozReview-Commit-ID: 4w3tEkVAMWd

--HG--
rename : layout/reftests/border-image/svg-as-border-image-4.html => layout/reftests/border-image/svg-as-border-image-4a.html
extra : rebase_source : 5f9c9860ac0a8ee2786b43c585ad68186225bb9f
2017-09-20 10:06:26 +08:00

26 lines
684 B
HTML

<html>
<head>
<title>test of svg-as-border-image</title>
<style type="text/css">
div {
width: 100px;
height: 100px;
margin: 30px;
border-width: 30px;
border-style: solid;
transform: translate(100px, 200px);
}
#border5p {
border-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><circle cx="50%" cy="50%" r="50%" fill="red"/></svg>') 5% stretch;
}
#border25p {
border-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><circle cx="50%" cy="50%" r="50%" fill="red"/></svg>') 25% stretch;
}
</style>
</head>
<body style="transform: translate(-100px, -200px);">
<div id="border5p"></div>
<div id="border25p"></div>
</body>
</html>