Move background_repeat_both_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-12 15:34:16 +02:00
parent 98328fdfb2
commit b38426692a
4 changed files with 25 additions and 1 deletions

View file

@ -327,6 +327,18 @@
"url": "/_mozilla/css/background_position_shorthand.html"
}
],
"css/background_repeat_both_a.html": [
{
"path": "css/background_repeat_both_a.html",
"references": [
[
"/_mozilla/css/background_repeat_both_b.html",
"=="
]
],
"url": "/_mozilla/css/background_repeat_both_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",
@ -1436,6 +1448,18 @@
"url": "/_mozilla/css/background_position_shorthand.html"
}
],
"css/background_repeat_both_a.html": [
{
"path": "css/background_repeat_both_a.html",
"references": [
[
"/_mozilla/css/background_repeat_both_b.html",
"=="
]
],
"url": "/_mozilla/css/background_repeat_both_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",

View file

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

View file

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