LayoutTests:
Reviewed by Darin.
- Test for http://bugzilla.opendarwin.org/show_bug.cgi?id=8118
REGRESSION (r13595): Inline block's clipped overflow increases table row height
* fast/inline-block/overflow-clip-expected.checksum: Added.
* fast/inline-block/overflow-clip-expected.png: Added.
* fast/inline-block/overflow-clip-expected.txt: Added.
* fast/inline-block/overflow-clip.html: Added.
WebCore:
Test: fast/inline-block/overflow-clip.html
Reviewed by Darin.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=8118
REGRESSION (r13595): Inline block's clipped overflow increases table row height
* rendering/render_line.cpp:
(WebCore::InlineFlowBox::placeBoxesVertically): Don't look at interior overflow
when calculating the contribution to the inline's vertical overflows.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@13638 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/fast/inline-block/overflow-clip.html b/LayoutTests/fast/inline-block/overflow-clip.html
new file mode 100644
index 0000000..cfb4679
--- /dev/null
+++ b/LayoutTests/fast/inline-block/overflow-clip.html
@@ -0,0 +1,21 @@
+<html>
+<head></head>
+<body>
+<p>
+This is a test for <i><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8118">http://bugzilla.opendarwin.org/show_bug.cgi?id=8118</a>
+REGRESSION (r13595): Inline block's clipped overflow increases table row height</i>.
+</p>
+<p>
+You should see a green square and no red.
+</p>
+<table style="background: red;" cellpadding="0" cellspacing="0">
+ <tr>
+ <td>
+ <div style="display: inline-block; overflow: hidden; height: 100px; width: 100px;">
+ <div style="width: 100px; height: 200px; background: green;"></div>
+ </div>
+ </td>
+ </tr>
+</table>
+</body>
+</html>