mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
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).
20 lines
351 B
HTML
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>
|