[Webkit-unassigned] [Bug 6991] New: Table embedded in a div causes Safari to crash
bugzilla-daemon at opendarwin.org
bugzilla-daemon at opendarwin.org
Tue Jan 31 21:07:57 PST 2006
http://bugzilla.opendarwin.org/show_bug.cgi?id=6991
Summary: Table embedded in a div causes Safari to crash
Product: WebKit
Version: 417.x
Platform: Macintosh
OS/Version: Mac OS X 10.4
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: HTML DOM
AssignedTo: webkit-unassigned at opendarwin.org
ReportedBy: jens.schumacher at mac.com
The following code will cause Safari to crash as soon as you start typing in
the text-field:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Safari Bug</title>
</head>
<body>
<form id="form" name="form" method="post" action="test.html">
<div style="display:none">
<table>
<tr>
<td>
This is a test
</td>
</tr>
</table>
</div>
<input type='text' name='captchaResponse' value='' />
</form>
</body>
</html>
The culprit seems to be related to the display:none parameter and the table
embedded in the div. Removing either the table or the parameter will not cause
Safari to crash anymore.
Workaround:
embedding the input field in a table can be used as a workaround and allows
again to type text into the field without crashing Safari.
Cheers,
Jens
--
Configure bugmail: http://bugzilla.opendarwin.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list