Move overflow_position_abs_inline_block.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 18:58:03 -04:00
parent 60f9e64ab6
commit 0847a8827e
4 changed files with 25 additions and 1 deletions

View file

@ -227,7 +227,6 @@ flaky_cpu == linebreak_simple_a.html linebreak_simple_b.html
!= overconstrained_block.html overconstrained_block_ref.html
== overflow_auto.html overflow_simple_b.html
== overflow_auto_stacking_order_a.html overflow_auto_stacking_order_ref.html
== overflow_position_abs_inline_block.html overflow_position_abs_inline_block_ref.html
# Should be ==?
!= overflow_position_abs_inside_normal_a.html overflow_position_abs_inside_normal_b.html
== overflow_scroll.html overflow_simple_b.html

View file

@ -1,23 +0,0 @@
<style>
#d1 {
width: 100px;
height: 100px;
position: absolute;
background: green;
}
#d2 {
display: inline-block;
width: 100px;
background: red;
height: 100px;
position: relative;
top: 20px;
left: 20px;
}
</style>
<div style="position:fixed"></div>
<div id="d1">
<div id="d2"></div>
</div>

View file

@ -1,23 +0,0 @@
<style>
#d1 {
width: 100px;
height: 100px;
position: absolute;
background: green;
}
#d2 {
display: block;
width: 100px;
background: red;
height: 100px;
position: relative;
top: 20px;
left: 20px;
}
</style>
<div style="position:fixed"></div>
<div id="d1">
<div id="d2"></div>
</div>