gecko/layout/reftests/border-radius/corner-4.html
Jonathan Watt e13922053c Bug 1094063, part 1 - Stop nsCSSBorderRenderer::DrawBorders from sometimes drawing the border twice. r=mattwoodrow
--HG--
extra : rebase_source : 091c0cbbe0cf6f7bf0dcfa4fcabe9c4c31e23c42
2014-11-06 22:07:36 +00:00

23 lines
297 B
HTML

<!doctype html>
<html>
<head>
<title>Test the border transparency</title>
<style>
div {
width: 100px;
height: 100px;
border: 15px solid rgba(0,0,255,0.5);
border-radius: 15px;
position: absolute;
left: 50px;
top: 50px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>