auto merge of #4437 : Adenilson/servo/fixInsetOutsetBlack03, r=jdm

Freshly rebased.
This commit is contained in:
bors-servo 2014-12-18 16:24:54 -07:00
commit 4ac8b6a723
5 changed files with 79 additions and 5 deletions

View file

@ -219,3 +219,6 @@ 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
!= outset_blackborder.html blackborder_ref.html

View 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>

View 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>

View file

@ -0,0 +1,20 @@
<html>
<style>
body {
margin: 0px;
}
.box {
width: 100px;
height: 100px;
margin: 0px;
border-width: 10px;
}
.outset { border-style: outset; }
</style>
<body>
<div class="box outset"></div>
</body>
</html>