Move background_position_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-09 17:08:42 +02:00
parent 6ce531e78b
commit ebd38a6ad8
4 changed files with 44 additions and 1 deletions

View file

@ -279,6 +279,18 @@
"url": "/_mozilla/css/background_origin_a.html"
}
],
"css/background_position_a.html": [
{
"path": "css/background_position_a.html",
"references": [
[
"/_mozilla/css/background_position_b.html",
"=="
]
],
"url": "/_mozilla/css/background_position_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",
@ -1340,6 +1352,18 @@
"url": "/_mozilla/css/background_origin_a.html"
}
],
"css/background_position_a.html": [
{
"path": "css/background_position_a.html",
"references": [
[
"/_mozilla/css/background_position_b.html",
"=="
]
],
"url": "/_mozilla/css/background_position_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>You see here a scroll labeled FOOBIE BLETCH.</title>
<link rel=match href=background_position_b.html>
<style>
#foo {
background: url(400x400_green.png);
background-position: 128px 0px;
background-repeat: no-repeat;
width: 528px;
height: 400px;
margin-left: 0;
}
</style>
</head>
<body>
<div id=foo></div>
</body>
</html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>You see here a scroll labeled FOOBIE BLETCH.</title>
<style>
#foo {
background: url(400x400_green.png);
width: 400px;
height: 400px;
margin-left: 128px;
}
</style>
</head>
<body>
<div id=foo></div>
</body>
</html>