Move no_image_background_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 6dccda4ba0
commit 2259fcb77a
4 changed files with 25 additions and 1 deletions

View file

@ -899,6 +899,18 @@
"url": "/_mozilla/css/no-image.html"
}
],
"css/no_image_background_a.html": [
{
"path": "css/no_image_background_a.html",
"references": [
[
"/_mozilla/css/no_image_background_ref.html",
"=="
]
],
"url": "/_mozilla/css/no_image_background_a.html"
}
],
"css/noscript.html": [
{
"path": "css/noscript.html",
@ -4080,6 +4092,18 @@
"url": "/_mozilla/css/no-image.html"
}
],
"css/no_image_background_a.html": [
{
"path": "css/no_image_background_a.html",
"references": [
[
"/_mozilla/css/no_image_background_ref.html",
"=="
]
],
"url": "/_mozilla/css/no_image_background_a.html"
}
],
"css/noscript.html": [
{
"path": "css/noscript.html",

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='no_image_background_ref.html'>
<style>
body {
background: peachpuff;
}
section {
display: block;
width: 256px;
height: 256px;
border: solid black 1px;
background: url(bogusybogusbogus.jpg);
}
</style>
</head>
<body>
<section></section>
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
background: peachpuff;
}
section {
display: block;
width: 256px;
height: 256px;
border: solid black 1px;
}
</style>
</head>
<body>
<section></section>
</body>
</html>