Move borders_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-27 13:32:29 +01:00
parent 8838133abe
commit 5b08ac9ca9
5 changed files with 25 additions and 1 deletions

View file

@ -11,7 +11,6 @@ fragment=top != ../html/acid2.html acid2_ref.html
== acid2_noscroll.html acid2_ref_broken.html
flaky_cpu == append_style_a.html append_style_b.html
== borders_a.html borders_b.html
!= box_shadow_blur_a.html box_shadow_blur_ref.html
== box_shadow_default_color_a.html box_shadow_default_color_ref.html
== box_shadow_inset_a.html box_shadow_inset_ref.html

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8 KiB

View file

@ -1,87 +0,0 @@
<!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>

View file

@ -1,19 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<style>
html {
margin: 0;
padding: 0;
background-color: white;
border: none;
}
body {
margin: 0;
padding: 0;
border: none;
}
</style>
</head>
<body><img src="borders.png"></body>
</html>