Closed
Bug 284514
Opened 20 years ago
Closed 19 years ago
Text inside fixed size table doesn't wrap if inside a CSS created IFRAME
Categories
(Core :: Layout, defect)
Tracking
()
VERIFIED
INVALID
People
(Reporter: thierry, Unassigned)
References
()
Details
Attachments
(2 files, 1 obsolete file)
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050223 Firefox/1.0.1
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050223 Firefox/1.0.1
http://srv1.reseller.lu/marcopuetz.lu/publicServlet.php?Call=Home
(bottom left, coming up concert)
>Théâtre Municipal d'Esch/Alzette
Text should wrap (Wraps in IE) but doesn't. (Is within a fixed size Table)
CSS:
http://srv1.reseller.lu/marcopuetz.lu/css/mrcpmain.css
Reproducible: Always
Steps to Reproduce:
1.Go to the URL
2.Look
3.
Expected Results:
Wrap the text.
there is no iframe at this page
<td height="100" id="leftBarBoxes">
<div id="showFrame"><p><img
src="binaries.php?bin=quatuors_saxophone_luxembou.jpg&nw=50" alt="" width="50"
height="50" class="imgBrd" /> Quatuor de Saxophone Luxembourg </p> </div>
</td>
Reporter | ||
Comment 2•20 years ago
|
||
READ :
There is an CSS crossbrowser simulated IFRAME on there. id=showFrame
Look at the CSS code.
It doesn't matter, the layout engine SHOULD wrap the text there, it does so if I
copy the TABLE out of the id=showframe into a "normal" blank html page. So why
doesn't it wrap it once it is id=showFrame ?
Reporter | ||
Comment 3•20 years ago
|
||
Note to Bernd:
You were also looking at the wrong code. I said "Upcoming Concert" (Coming Up
concert) not CD release.
Code in Question :
<div id="showFrame"><p><table width="191" cellpadding="0" cellspacing="0"
border="0"><tr><td valign="top" width="40"><strong>Date:</strong></td><td
width="151">Thu 21 Apr 2005</td></tr><tr><td
valign="top"><strong>Location:</strong></td><td valign="top">Théâtre Municipal
d'Esch/Alzette</td></tr><tr><td valign="top"><strong>Theme:</strong></td><td
valign="top">The Legend of Aquarius</td></tr></table></p> </div> </td>
Css Code :
#showFrame {
overflow: auto;
align: center;
position: static;
height: 100px;
width: 191px;
}
Note tweaking these settings didn't help.
![]() |
||
Comment 4•20 years ago
|
||
It looks like the page was changed so that the code no longer matches that in
comment 3. Could you please attach a testcase that actually shows the bug using
https://bugzilla.mozilla.org/attachment.cgi?bugid=284514&action=enter ?
Reporter | ||
Comment 5•20 years ago
|
||
Reporter | ||
Comment 6•20 years ago
|
||
Reporter | ||
Comment 7•20 years ago
|
||
Please note, I am not HTML guru, I don't want you to fix my bug(s). I sincerely
believe that there is an issue.
Download the html page and the css file (fix the path to the css).
left and in centre. Gecko however renders it fals on the left (in the css fake
frame) and correct in the middle.
Hence my believe that there might be a bug.
![]() |
||
Updated•20 years ago
|
Attachment #176255 -
Attachment mime type: text/plain → text/css
![]() |
||
Comment 8•20 years ago
|
||
Attachment #176254 -
Attachment is obsolete: true
![]() |
||
Comment 9•20 years ago
|
||
The CSS has:
#leftBarBoxes {
...
white-space: nowrap;
...
}
So the behavior is correct. IE has known issues with white-space:nowrap on
table cells (it basically ignores it).
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Comment 10•19 years ago
|
||
bz, flay me if I'm wrong, but I'm betting you meant to resolve this invalid, rather than assign it to nobody@.
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•