Move position_abs_margin_top_percentage_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 18:27:28 -04:00
parent 4ae8c37a96
commit 25772fc304
4 changed files with 25 additions and 1 deletions

View file

@ -246,7 +246,6 @@ resolution=300x300,device-pixel-ratio=2 != pixel_snapping_position_a.html pixel_
== png_rgba_colorspace_a.html png_rgba_colorspace_b.html
== position_abs_cb_with_non_cb_kid_a.html position_abs_cb_with_non_cb_kid_b.html
== position_abs_height_width_a.html position_abs_height_width_b.html
== position_abs_margin_top_percentage_a.html position_abs_margin_top_percentage_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,26 +0,0 @@
<html>
<head>
<style>
#first {
position: relative;
width: 200px;
height: 50px;
background: blue;
}
#abs {
position: absolute;
margin-top: 25%;
margin-bottom: 50%;
width: 30px;
height: 30px;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="abs">
</div>
</div>
</body>
</html>

View file

@ -1,22 +0,0 @@
<html>
<head>
<style>
#first {
width: 200px;
height: 50px;
background: blue;
}
.center {
height: 30px;
width: 30px;
background: green;
}
</style>
</head>
<body>
<div id="first">
</div>
<div class="center">
</div>
</body>
</html>