Move background_none_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-09 14:51:35 +02:00
parent 3e64751d2f
commit af1ba43010
4 changed files with 25 additions and 1 deletions

View file

@ -255,6 +255,18 @@
"url": "/_mozilla/css/background_image_position_a.html"
}
],
"css/background_none_a.html": [
{
"path": "css/background_none_a.html",
"references": [
[
"/_mozilla/css/background_none_b.html",
"=="
]
],
"url": "/_mozilla/css/background_none_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",
@ -1292,6 +1304,18 @@
"url": "/_mozilla/css/background_image_position_a.html"
}
],
"css/background_none_a.html": [
{
"path": "css/background_none_a.html",
"references": [
[
"/_mozilla/css/background_none_b.html",
"=="
]
],
"url": "/_mozilla/css/background_none_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>background: none test</title>
<link rel=match href=background_none_b.html>
<style>
#a {
background: red;
width: 32px;
height: 32px;
}
#a {
background: none;
}
</style>
</head>
<body>
<div id=a>Background: none test</div>
</body>
</html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>background: none test</title>
<style>
#a {
width: 32px;
height: 32px;
}
</style>
</head>
<body>
<div id=a>Background: none test</div>
</body>
</html>