mirror of
https://github.com/servo/servo.git
synced 2025-06-17 12:54:28 +00:00
The borders_a.html ref test had a WA to avoid displaying a spurious black pixel at (0,0). Details are at https://github.com/servo/servo/issues/2879 The WA can be removed since the bug is no longer reproducible.
87 lines
1.7 KiB
HTML
87 lines
1.7 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#none{
|
|
border-style: none;
|
|
border-width: 10px;
|
|
border-color: green red yellow black;
|
|
width:4096px;
|
|
}
|
|
#hidden{
|
|
border-style: hidden;
|
|
border-width: 10px;
|
|
border-color: green red yellow black;
|
|
width:4096px;
|
|
}
|
|
#double{
|
|
border-style: double;
|
|
border-width: 10px;
|
|
border-color: yellow;
|
|
width:4096px;
|
|
}
|
|
#solid{
|
|
border-style: solid;
|
|
border-width: 10px;
|
|
border-color: yellow;
|
|
width:4096px;
|
|
}
|
|
#dashed{
|
|
border-style: dashed;
|
|
border-width: 10px;
|
|
border-color: green yellow black red;
|
|
width:4096px;
|
|
}
|
|
#dotted{
|
|
border-style: dotted;
|
|
border-width: 10px;
|
|
border-color: green red yellow black;
|
|
width:4096px;
|
|
}
|
|
#groove{
|
|
border-style: groove;
|
|
border-width: 10px;
|
|
border-color: green red yellow black;
|
|
position: relative;
|
|
left: -30px;
|
|
width:4096px;
|
|
}
|
|
#ridge{
|
|
border-style: ridge;
|
|
border-width: 10px;
|
|
border-color: green red yellow black;
|
|
position: relative;
|
|
left: -30px;
|
|
width:4096px;
|
|
}
|
|
#inset{
|
|
border-style: inset;
|
|
border-width: 10px;
|
|
border-color: green red yellow black;
|
|
position: relative;
|
|
left: -30px;
|
|
width:4096px;
|
|
}
|
|
#outset{
|
|
border-style: outset;
|
|
border-width: 10px;
|
|
border-color: green red yellow black;
|
|
position: relative;
|
|
left: -30px;
|
|
width:4096px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="none"></div>
|
|
<div id="hidden"></div>
|
|
<div id="solid"></div>
|
|
<div id="double"></div>
|
|
<div id="dashed"></div>
|
|
<div id="dotted"></div>
|
|
<div id="groove"></div>
|
|
<div id="ridge"></div>
|
|
<div id="inset"></div>
|
|
<div id="outset"></div>
|
|
</body>
|
|
</HTML>
|