Add inline-block overflow ref test

For https://github.com/servo/servo/issues/3725
This commit is contained in:
Bryan Bell 2015-03-02 21:04:42 -08:00
parent 2f3697f5f3
commit 3b32178962
3 changed files with 13 additions and 0 deletions

View file

@ -145,6 +145,7 @@ fragment=top != ../html/acid2.html acid2_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_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
== table_containing_block_a.html table_containing_block_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>