Move float_positioned_pseudo_stacking_context.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent 3147a1e13a
commit bfbf881ca0
4 changed files with 25 additions and 1 deletions

View file

@ -863,6 +863,18 @@
"url": "/_mozilla/css/float_overflow_area_a.html"
}
],
"css/float_positioned_pseudo_stacking_context.html": [
{
"path": "css/float_positioned_pseudo_stacking_context.html",
"references": [
[
"/_mozilla/css/float_positioned_pseudo_stacking_context_ref.html",
"=="
]
],
"url": "/_mozilla/css/float_positioned_pseudo_stacking_context.html"
}
],
"css/float_right_intrinsic_width_a.html": [
{
"path": "css/float_right_intrinsic_width_a.html",
@ -5040,6 +5052,18 @@
"url": "/_mozilla/css/float_overflow_area_a.html"
}
],
"css/float_positioned_pseudo_stacking_context.html": [
{
"path": "css/float_positioned_pseudo_stacking_context.html",
"references": [
[
"/_mozilla/css/float_positioned_pseudo_stacking_context_ref.html",
"=="
]
],
"url": "/_mozilla/css/float_positioned_pseudo_stacking_context.html"
}
],
"css/float_right_intrinsic_width_a.html": [
{
"path": "css/float_right_intrinsic_width_a.html",

View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<link rel='match' href='float_positioned_pseudo_stacking_context_ref.html'>
<style>
html, body {
margin: 0; padding: 0;
}
div {
width: 100px;
height: 100px;
}
#a {
position: absolute;
top: 20px;
left: 20px;
background: red;
}
#b {
float: left;
position: relative;
background: green;
}
</style>
<body>
<div id="a"></div>
<div id="b"></div>
</body>

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<style>
html, body {
margin: 0; padding: 0;
}
div {
width: 100px;
height: 100px;
}
#a {
position: absolute;
top: 20px;
left: 20px;
background: red;
}
#b {
position: relative;
background: green;
}
</style>
<body>
<div id="a"></div>
<div id="b"></div>
</body>