| <!DOCTYPE html> |
| <html> |
| <style> |
| span > span { |
| padding-left: 30px; |
| } |
| img { |
| width: 50px; |
| height: 50px; |
| } |
| </style> |
| <body> |
| <div>Test for Bugzilla bug:<a href="https://bugs.webkit.org/show_bug.cgi?id=99194"> 99194</a> Regression r130057: incorrect block pref width for alternating InlineFlow and inline Replaced.</div> |
| <div>This test verifies that we properly calculate block preferred widths when we have repeated inline replaced elements wrapped in InlineFlows.</div> |
| <div style="width: 50px"> |
| <span style="float: left; border: 1px solid black;"> |
| <span style=""><img src="resources/50x50.gif"/></span><span><img src="resources/50x50.gif"/></span> |
| </span> |
| </div> |
| </body> |
| </html> |