Move background_repeat_x_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-12 15:40:52 +02:00
parent 1b79f17b34
commit 14c2225189
4 changed files with 25 additions and 1 deletions

View file

@ -351,6 +351,18 @@
"url": "/_mozilla/css/background_repeat_none_a.html"
}
],
"css/background_repeat_x_a.html": [
{
"path": "css/background_repeat_x_a.html",
"references": [
[
"/_mozilla/css/background_repeat_x_b.html",
"=="
]
],
"url": "/_mozilla/css/background_repeat_x_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",
@ -1484,6 +1496,18 @@
"url": "/_mozilla/css/background_repeat_none_a.html"
}
],
"css/background_repeat_x_a.html": [
{
"path": "css/background_repeat_x_a.html",
"references": [
[
"/_mozilla/css/background_repeat_x_b.html",
"=="
]
],
"url": "/_mozilla/css/background_repeat_x_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<title>You see here a scroll labeled XIXAXA XOXAXA XUXAXA.</title>
<link rel=match href=background_repeat_x_b.html>
<style>
div {
width: 412px;
height: 412px;
background: url(rust-0.png);
background-repeat: repeat-x;
position: absolute;
left: 0;
top: 0;
}
</style>
</head>
<body>
<div></div>
</body>
</html>

View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>You see here a scroll labeled XIXAXA XOXAXA XUXAXA.</title>
<style>
div {
width: 206px;
height: 206px;
background: url(rust-0.png);
position: absolute;
top: 0;
}
.repeata {
left: 0;
}
.repeatb {
left: 206px;
}
</style>
</head>
<body>
<div class=repeata></div><div class=repeatb></div>
</body>
</html>