Files
servo/tests/ref/outset_blackborder.html
Adenilson Cavalcanti b6f315cb35 Adding outset ref test.
2014-12-18 13:55:45 -08:00

21 lines
228 B
HTML

<html>
<style>
body {
margin: 0px;
}
.box {
width: 100px;
height: 100px;
margin: 0px;
border-width: 10px;
}
.outset { border-style: outset; }
</style>
<body>
<div class="box outset"></div>
</body>
</html>