auto merge of #5130 : bjwbell/servo/inline_block_overflow_ref_test, r=glennw

For https://github.com/servo/servo/issues/3725
This commit is contained in:
bors-servo 2015-03-03 21:48:43 -07:00
commit 07a3ce2ce1
3 changed files with 13 additions and 0 deletions

View file

@ -148,6 +148,7 @@ fragment=top != ../html/acid2.html acid2_ref.html
== inline_block_baseline_a.html inline_block_baseline_ref.html == inline_block_baseline_a.html inline_block_baseline_ref.html
== inline_block_parent_width.html inline_block_parent_width_ref.html == inline_block_parent_width.html inline_block_parent_width_ref.html
== inline_block_parent_width_percentage.html inline_block_parent_width_ref.html == inline_block_parent_width_percentage.html inline_block_parent_width_ref.html
== inline_block_overflow.html inline_block_overflow_ref.html
== float_table_a.html float_table_ref.html == float_table_a.html float_table_ref.html
== table_containing_block_a.html table_containing_block_ref.html == table_containing_block_a.html table_containing_block_ref.html
== link_style_order.html link_style_order_ref.html == link_style_order.html link_style_order_ref.html

View file

@ -0,0 +1,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<body>
a<span style="display: inline-block; overflow: hidden">b</span>
</body>
</html>

View file

@ -0,0 +1,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<body>
ab
</body>
</html>