Move border_style_none_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent 62ef402f90
commit 890e1d93e2
4 changed files with 25 additions and 1 deletions

View file

@ -791,6 +791,18 @@
"url": "/_mozilla/css/border_spacing_a.html"
}
],
"css/border_style_none_a.html": [
{
"path": "css/border_style_none_a.html",
"references": [
[
"/_mozilla/css/border_style_none_b.html",
"=="
]
],
"url": "/_mozilla/css/border_style_none_a.html"
}
],
"css/box_shadow_border_box_a.html": [
{
"path": "css/box_shadow_border_box_a.html",
@ -5280,6 +5292,18 @@
"url": "/_mozilla/css/border_spacing_a.html"
}
],
"css/border_style_none_a.html": [
{
"path": "css/border_style_none_a.html",
"references": [
[
"/_mozilla/css/border_style_none_b.html",
"=="
]
],
"url": "/_mozilla/css/border_style_none_a.html"
}
],
"css/box_shadow_border_box_a.html": [
{
"path": "css/box_shadow_border_box_a.html",

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='border_style_none_b.html'>
<style>
html {
margin: 0;
padding: 0;
background-color: blue;
}
body {
margin: 0;
padding: 0;
border-top-width: 3px;
border-top-style: none;
}
</style>
</head>
<body><img src="png_rgba_colorspace_a.png"></body>
</html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<style>
html {
margin: 0;
padding: 0;
background-color: blue;
}
body {
margin: 0;
padding: 0;
border-top-width: 0px;
}
</style>
</head>
<body><img src="png_rgba_colorspace_a.png"></body>
</html>