mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Adding inset ref test.
This commit is contained in:
parent
4bfe134c84
commit
06bbecc049
3 changed files with 42 additions and 0 deletions
|
@ -219,3 +219,5 @@ fragment=top != ../html/acid2.html acid2_ref.html
|
|||
== table_caption_top_a.html table_caption_top_ref.html
|
||||
== table_caption_bottom_a.html table_caption_bottom_ref.html
|
||||
== clip_a.html clip_ref.html
|
||||
!= inset_blackborder.html blackborder_ref.html
|
||||
|
||||
|
|
20
tests/ref/blackborder_ref.html
Normal file
20
tests/ref/blackborder_ref.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<style>
|
||||
body {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.box {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
margin: 0px;
|
||||
border-width: 10px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<div class="box"></div>
|
||||
</body>
|
||||
</html>
|
20
tests/ref/inset_blackborder.html
Normal file
20
tests/ref/inset_blackborder.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<style>
|
||||
body {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.box {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
margin: 0px;
|
||||
border-width: 10px;
|
||||
}
|
||||
|
||||
.inset { border-style: inset; }
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<div class="box inset"></div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue