WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
VERIFIED FIXED
6345
REGRESSION: repro crash when specifying an invalid value for the charset attribute of a <script>
https://bugs.webkit.org/show_bug.cgi?id=6345
Summary
REGRESSION: repro crash when specifying an invalid value for the charset attr...
mitz
Reported
2006-01-03 00:47:11 PST
Safari crashes if the charset attribute in a <script> tag, (or the document's charset, if the script tag doesn't specify a charset) is not a valid encoding name. The crash is because ChachedScript's m_codec is null. To reproduce, open the attached testcase in Safari. The regression is from the patch for
bug 6078
, which replaced a few instances of KGlobal::charsets()-
>codecForName() with QTextCodec::codecForName(). The former defaults to ISO-8859-1 when the
argument is invalid, but the latter returns 0.
Attachments
testcase (crasher)
(127 bytes, text/html)
2006-01-03 00:48 PST
,
mitz
no flags
Details
The fix (with a small amount of unrelated cleanup)
(6.14 KB, patch)
2006-01-03 11:44 PST
,
Eric Seidel (no email)
darin
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
mitz
Comment 1
2006-01-03 00:48:03 PST
Created
attachment 5438
[details]
testcase (crasher)
Eric Seidel (no email)
Comment 2
2006-01-03 11:31:50 PST
I've got a fix.
Eric Seidel (no email)
Comment 3
2006-01-03 11:44:24 PST
Created
attachment 5454
[details]
The fix (with a small amount of unrelated cleanup)
Eric Seidel (no email)
Comment 4
2006-01-03 11:46:28 PST
Comment on
attachment 5454
[details]
The fix (with a small amount of unrelated cleanup) Note, this fixes 2 of the 3 places I changed from KCharsets::codecForName to QTextCodec::codecForName. The 3rd case (found in khtml/html/html_formimpl.cpp), I didn't change. The code there seems to *expect* that codec for name might return NULL, where has KCharset::codecForName never returned NULL. It seems that if the first charset listed was "invalid" we would assume the page was supposed to be latin1, now we (hopefully correctly) go through the entire list, looking for a valid charset first.
Eric Seidel (no email)
Comment 5
2006-01-03 12:32:38 PST
Comment on
attachment 5454
[details]
The fix (with a small amount of unrelated cleanup) The reason I didn't add a test for the accept-charset related change (which was made by the previous bug, and is now being noticed when going to fix this crash) is that I don't know how to go about testing local form submissions in DRT.
Alexey Proskuryakov
Comment 6
2006-01-03 13:36:32 PST
I made a test for encodings in submitted forms which is now in fast/forms/form-data-encoding.html - not sure if the same approach can be used here, though.
Darin Adler
Comment 7
2006-01-03 13:44:51 PST
Comment on
attachment 5454
[details]
The fix (with a small amount of unrelated cleanup) Looks fine.
Joost de Valk (AlthA)
Comment 8
2006-01-22 04:57:12 PST
Removing keyword(s) since bug is fixed.
Joost de Valk (AlthA)
Comment 9
2006-01-22 05:01:27 PST
Removing keyword(s) since bug is fixed.
Eric Seidel (no email)
Comment 10
2006-01-31 21:20:53 PST
Removing Regression keyword from bugs already fixed.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug