Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / block-with-inline-replaced-children-in-inline-flows.html
blobaea154b9c0c90f08051cea7342e3273996db3ff0
1 <!DOCTYPE html>
2 <html>
3 <style>
4 span > span {
5 padding-left: 30px;
7 img {
8 width: 50px;
9 height: 50px;
11 </style>
12 <body>
13 <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>
14 <div>This test verifies that we properly calculate block preferred widths when we have repeated inline replaced elements wrapped in InlineFlows.</div>
15 <div style="width: 50px">
16 <span style="float: left; border: 1px solid black;">
17 <span style=""><img src="resources/50x50.gif"/></span><span><img src="resources/50x50.gif"/></span>
18 </span>
19 </div>
20 </body>
21 </html>