Mypal/layout/reftests/border-image/svg-as-border-image-4.html
2019-03-11 13:26:37 +03:00

27 lines
647 B
HTML

<html class="reftest-wait">
<head>
<title>test of svg-as-border-image</title>
<style type="text/css">
div {
width: 400px;
height: 100px;
margin: 30px;
border-width: 30px;
border-style: solid;
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;
}
</style>
<script>
function resizeDiv() {
document.getElementById('borderdiv').style.width = '100px';
document.documentElement.removeAttribute('class');
}
document.addEventListener('MozReftestInvalidate', resizeDiv, false);
</script>
</head>
<body>
<div id="borderdiv"></div>
</body>
</html>