Move position_abs_nested_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 18:24:23 -04:00
parent 9086f3e81e
commit 48fb35ab4b
4 changed files with 25 additions and 1 deletions

View file

@ -248,7 +248,6 @@ resolution=300x300,device-pixel-ratio=2 != pixel_snapping_position_a.html pixel_
== position_abs_height_width_a.html position_abs_height_width_b.html
== position_abs_left_a.html position_abs_left_b.html
== position_abs_margin_top_percentage_a.html position_abs_margin_top_percentage_b.html
== position_abs_nested_a.html position_abs_nested_b.html
# commented out because multiple layers don't work with reftests --pcwalton
# == position_fixed_a.html position_fixed_b.html
# == position_fixed_simple_a.html position_fixed_simple_b.html

View file

@ -1,34 +0,0 @@
<html>
<head>
<style>
#first {
position: relative;
width: 90px;
height: 90px;
border: solid 1px;
}
#abs {
position: absolute;
left: 30px;
top: 30px;
height: 30px;
width: 30px;
background: blue;
}
#abs2 {
position: absolute;
background: green;
height: 15px;
width: 15px;
}
</style>
</head>
<body>
<div id="first">
<div id="abs">
<div id="abs2">
</div>
</div>
</div>
</body>
</html>

View file

@ -1,36 +0,0 @@
<html>
<head>
<style>
#first {
width: 90px;
height: 90px;
border: solid 1px;
}
.row {
width: 90px;
height: 30px;
}
.center {
margin-left: 30px;
height: 30px;
width: 30px;
background: blue;
}
.little-box {
height: 15px;
width: 15px;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div class="row"></div>
<div class="center">
<div class="little-box">
</div>
</div>
<div class="row"></div>
</div>
</body>
</html>