Move stacking_context_overflow_relative_outline_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 23:09:46 -04:00
parent b17a395415
commit 541baa5168
4 changed files with 25 additions and 1 deletions

View file

@ -591,6 +591,18 @@
"url": "/_mozilla/css/setpropertypriority.html"
}
],
"css/stacking_context_overflow_relative_outline_a.html": [
{
"path": "css/stacking_context_overflow_relative_outline_a.html",
"references": [
[
"/_mozilla/css/stacking_context_overflow_relative_outline_ref.html",
"=="
]
],
"url": "/_mozilla/css/stacking_context_overflow_relative_outline_a.html"
}
],
"css/stacking_context_rtl.html": [
{
"path": "css/stacking_context_rtl.html",
@ -2600,6 +2612,18 @@
"url": "/_mozilla/css/setpropertypriority.html"
}
],
"css/stacking_context_overflow_relative_outline_a.html": [
{
"path": "css/stacking_context_overflow_relative_outline_a.html",
"references": [
[
"/_mozilla/css/stacking_context_overflow_relative_outline_ref.html",
"=="
]
],
"url": "/_mozilla/css/stacking_context_overflow_relative_outline_a.html"
}
],
"css/stacking_context_rtl.html": [
{
"path": "css/stacking_context_rtl.html",

View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<link rel='match' href='stacking_context_overflow_relative_outline_ref.html'>
<style>
section {
position: absolute;
top: 100px;
left: 100px;
width: 10px;
height: 10px;
}
h1 {
position: relative;
top: -50px;
left: -50px;
width: 200px;
height: 200px;
margin: 0;
outline: solid 10px green;
}
</style>
<body>
<section><h1></h1></section>
</body>
</html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<style>
section {
position: absolute;
top: 40px;
left: 40px;
width: 200px;
height: 200px;
border: solid 10px green;
}
</style>
<body>
<section></section>
</body>
</html>