mirror of
https://github.com/servo/servo.git
synced 2025-08-07 22:45:34 +01:00
Cargoify servo
This commit is contained in:
parent
db2f642c32
commit
c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions
90
tests/ref/borders_a.html
Normal file
90
tests/ref/borders_a.html
Normal file
|
@ -0,0 +1,90 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
#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>
|
Loading…
Add table
Add a link
Reference in a new issue