mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
auto merge of #3604 : pcwalton/servo/inline-block-overflow-hidden, r=glennw
Makes lots of GitHub appear. r? @glennw
This commit is contained in:
commit
a92e55597e
6 changed files with 34 additions and 14 deletions
|
@ -172,3 +172,4 @@ fragment=top != ../html/acid2.html acid2_ref.html
|
|||
== pre_ignorable_whitespace_a.html pre_ignorable_whitespace_ref.html
|
||||
== many_brs_a.html many_brs_ref.html
|
||||
== box_sizing_sanity_check_a.html box_sizing_sanity_check_ref.html
|
||||
== inline_block_overflow_hidden_a.html inline_block_overflow_hidden_ref.html
|
||||
|
|
7
tests/ref/inline_block_overflow_hidden_a.html
Normal file
7
tests/ref/inline_block_overflow_hidden_a.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<div style="display: inline-block; overflow: hidden">This should be visible</div>
|
||||
</body>
|
||||
</html>
|
||||
|
8
tests/ref/inline_block_overflow_hidden_ref.html
Normal file
8
tests/ref/inline_block_overflow_hidden_ref.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<div style="display: inline-block">This should be visible</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue