Files
servo/tests/wpt/css-tests/css-backgrounds-3_dev/html4/reference/css-border-radius-ref-002.htm

34 lines
880 B
HTML

<!DOCTYPE html>
<html><head>
<title>CSS border-radius Test</title>
<style type="text/css">
.redSquare {
position: absolute;
left:50px;
width: 100px;
height: 100px;
background-image:url(../support/yyy.png);
}
.greenSquare {
position: absolute;
left:50px;
width: 100px;
height: 100px;
background-image:url(../support/yy.png);
}
.container {
position: absolute;
}
</style>
</head>
<body>
<p>The test passes if there is one graph with one color.</p>
<div class="container">
<!-- This is the graph that should not be visible if the test passes -->
<div class="greenSquare" id="green"></div>
<!-- This is the square being tested with the radius-->
<div class="redSquare" id="red">
</div>
</div></body></html>