Move negative_margins_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 06c7ecc04b
commit 30208daf1f
4 changed files with 25 additions and 1 deletions

View file

@ -179,7 +179,6 @@ flaky_cpu == linebreak_simple_a.html linebreak_simple_b.html
== margin_padding_inline_block_a.html margin_padding_inline_block_ref.html
== margins_inside_floats_a.html margins_inside_floats_ref.html
== marker_block_direction_placement_a.html marker_block_direction_placement_ref.html
== negative_margins_a.html negative_margins_b.html
!= noteq_attr_exists_selector.html attr_exists_selector_ref.html
!= octicons_a.html octicons_ref.html
== ol_japanese_iroha_a.html ol_japanese_iroha_ref.html

View file

@ -1,18 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<style>
* {
line-height: 14px;
}
#b {
margin-top: -14px;
}
</style>
</head>
<body>
<div id=a>X</div>
<div id=b>X</div>
</body>
</html>

View file

@ -1,24 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<style>
* {
line-height: 14px;
}
#a {
position: relative;
}
#b {
position: absolute;
top: 0;
left: 0;
right: 0;
}
</style>
</head>
<body>
<div id=a>X
<div id=b>X</div></div>
</body>
</html>