Closed
Bug 12384
Opened 25 years ago
Closed 25 years ago
[M8] <NOBR> in smaller browser window causing element to cross table cell boundaries
Categories
(Core :: Layout: Tables, defect, P2)
Tracking
()
VERIFIED
FIXED
M10
People
(Reporter: jackr, Assigned: buster)
References
()
Details
It appears that the <NOBR> tag used on the Ameritech Yellow Pages search page is
causing the text input box for phone number to cross table cell boundaries. Note
that this bug only manifests itself if the browser window width is smaller than
that of the tab
Updated•25 years ago
|
Assignee: karnaze → kipp
Comment 1•25 years ago
|
||
Kipp, in the following example, the cell's area frame is reporting a max element
width that is too small. Make the window very narrow and you'll see the problem.
<HTML>
<BODY>
<FORM action="/search/client.cgi" method="GET">
<TABLE border="1" cellpadding="0" cellspacing="0" bgcolor="#ffe030">
<TR valign="top">
<TD>
<nobr><INPUT type="text" size="3" maxlength="3" name="npa"> - <INPUT
type="text" size="3" maxlength="3" name="nxx"> - <INPUT type="text" size="4"
maxlength="4" name="number"></nobr>
</TD>
<TR>
</TABLE>
</FORM>
</BODY>
</HTML>
Severity: minor → major
Status: NEW → ASSIGNED
Priority: P3 → P2
Target Milestone: M10
Inline elements were not computing the max-element-size.width when "white-space:
nowrap" was set. Now they do.
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 3•25 years ago
|
||
Using 9/16 Apprunner with test code provided (8/24), verifying bug fixed.
You need to log in
before you can comment on or make changes to this bug.
Description
•