Move negative_margin_uncle_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 24b0b0c80c
commit b9c06f3f0b
4 changed files with 25 additions and 1 deletions

View file

@ -839,6 +839,18 @@
"url": "/_mozilla/css/min_max_height_a.html"
}
],
"css/negative_margin_uncle_a.html": [
{
"path": "css/negative_margin_uncle_a.html",
"references": [
[
"/_mozilla/css/negative_margin_uncle_b.html",
"=="
]
],
"url": "/_mozilla/css/negative_margin_uncle_a.html"
}
],
"css/nth_child_pseudo_a.html": [
{
"path": "css/nth_child_pseudo_a.html",
@ -3912,6 +3924,18 @@
"url": "/_mozilla/css/min_max_height_a.html"
}
],
"css/negative_margin_uncle_a.html": [
{
"path": "css/negative_margin_uncle_a.html",
"references": [
[
"/_mozilla/css/negative_margin_uncle_b.html",
"=="
]
],
"url": "/_mozilla/css/negative_margin_uncle_a.html"
}
],
"css/nth_child_pseudo_a.html": [
{
"path": "css/nth_child_pseudo_a.html",

View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='negative_margin_uncle_b.html'>
<title>You see here a scroll labeled KERNOD WEL.</title>
<style>
body {
font-size: 40px;
}
#d {
float: right;
background: green;
color: white;
}
#b {
margin: 0 0 -100px 0;
}
#c {
margin: 100px 0 0 0;
clear: both;
background-color: blue;
color: white;
}
</style>
</head>
<body>
<div id=d>Beetlejuice</div>
<div id=a><div id=b>Beetlejuice</div></div>
<div id=c>Beetlejuice</div>
</body>
</html>

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>You see here a scroll labeled KERNOD WEL.</title>
<style>
body {
font-size: 40px;
}
#d {
float: right;
background: green;
color: white;
}
#c {
clear: both;
background-color: blue;
color: white;
}
</style>
</head>
<body>
<div id=d>Beetlejuice</div>
<div id=a>Beetlejuice</div>
<div id=c>Beetlejuice</div>
</body>
</html>