blob: 9037402beab70f779c41674d5bf94e89d3604667 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This tests that border-radius on html renders correctly.</title>
<style>
body {
margin: 0px;
}
div {
border-radius: 100%;
background-color: green;
}
</style>
</head>
<body>
<div id=foo></div>
<script>
var container = document.getElementById("foo");
container.style.width = window.innerWidth + "px";
container.style.height = window.innerHeight + "px";
</script>
</body>
</html>