[Webkit-unassigned] [Bug 17309] Absolutely-positioned div with "overflow: visible auto" doesn't allow enough width for contents when scrollbar is present
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Jan 15 00:13:20 PST 2010
https://bugs.webkit.org/show_bug.cgi?id=17309
--- Comment #5 from vituko <vituko at gmail.com> 2010-01-15 00:13:20 PST ---
532.5
this bug is still there
more exactly, it happens when the layer pushes the parent width
Ok :
-Absolute positioned layer
-Layer width smaller than parent width
Ko :
-Layer with float left : always pushes
-Layer width bigger than parent width : for example, when increasing the table
cell default width
Ok :
<table style="width:200px"><tr><td>
<div style="overflow-y:scroll ; overflow-x:visible">asdf</div>
</td><td>asdf</td></tr></table>
Ko :
<table style="width:200px"><tr><td>
<div style="overflow-y:scroll ; overflow-x:visible">asdf</div>
</td><td style="width:100%">asdf</td></tr></table>
<table><tr><td>
<div style="overflow-y:scroll ; overflow-x:visible">asdf</div>
</td><td>asdf</td></tr></table>
Until the patch comes, possible workaround : overflow-x:hidden + padding-right
(scroll width)
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list