Closed
Bug 250345
Opened 22 years ago
Closed 21 years ago
nested table and or fieldset resizes dynamically when moving cursor over link with css hover attributes set
Categories
(Core :: Layout: Tables, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: ffincent79, Unassigned)
References
Details
Attachments
(1 file)
|
611 bytes,
text/html
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7) Gecko/20040626 Firefox/0.8
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7) Gecko/20040626 Firefox/0.8
When using the w3o validated html/css code below, the width of the tables and/or
fieldset changes realtime each time when moving the mousecursor over the link
inside. I've tested this in Opera, Konqueror, IE but it seems it only happens in
Mozilla related.
------ begin code (don't include this line) ------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Bug?</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<style type="text/css">
td {
font-size: 11px;
}
a:hover {
border-bottom: 1px solid black;
}
</style>
</head>
<body>
<table border="1">
<tr>
<td>
<fieldset>
<legend>Fieldset1 </legend>
<table width="100%" border="1">
<tr>
<td>
<a href="#">test</a>
</td>
</tr>
</table>
</fieldset>
</td>
</tr>
</table>
</body>
</html>
------ end code (don't include this line) ------
Reproducible: Always
Steps to Reproduce:
1. Create html file using the code i submitted
2. Open html file in Mozilla
3. Move cursor over link
Actual Results:
Tables and/or fieldset resizes realtime
Expected Results:
No resize
| Reporter | ||
Comment 1•22 years ago
|
||
Probabely related bug (found after submission):
http://bugzilla.mozilla.org/show_bug.cgi?id=162268
Comment 2•22 years ago
|
||
Comment 3•22 years ago
|
||
Probably the same cause as bug 252350 and bug 247487.
They seem all fixed when backing out the patch for bug 232754, see bug 252350,
comment 7.
But this doesn't help for bug 162268, so I don't think this bug depends on bug
162268.
Comment 4•21 years ago
|
||
This bug can also not be seen anymore in today's trunk (1.8a) builds. Probably
fixed at the same day as bug 247487 was fixed.
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•