servo/tests/ref/border_black_solid.html
Adenilson Cavalcanti 4d5cca2c69 Adding tests to check behavior. There are 3 files that will test:
a) If the groove border is different from a black border (the bug that this
patch set fixes);
b) If a ridge border is different from a black border (samething);
c) If groove is different from ridge (they should be inverse of each other).

All 3 new tests passes on OSX Yosemite (10.10).
2014-12-12 13:51:24 -08:00

20 lines
351 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 100px;
height: 100px;
margin: 10px;
border-width: 20px;
border-color: black;
border-style: solid;
}
</style>
</head>
<body>
<!-- Test mixed border styles. Expect a square with solid dark border.
-->
<div class="box"></div>
</body>
</html>