Closed
Bug 71399
Opened 24 years ago
Closed 24 years ago
parser causes string assertion loading NYTimes
Categories
(Core :: DOM: HTML Parser, defect)
Tracking
()
VERIFIED
FIXED
People
(Reporter: dbaron, Assigned: harishd)
References
()
Details
When loading http://www.nytimes.com/ I see the assertion
###!!! ASSERTION: |First()| on an empty string: 'Length()>0', file
../../dist/include/string/nsAReadableString.h, line 630
###!!! Break: at file ../../dist/include/string/nsAReadableString.h, line 630
which is caused by nsHTMLTokenizer.cpp, line 583. The code
if((kForwardSlash==key.First()) && (0==text.Length())){
should probably be replaced by
if (key.Length() && (kForwardSlash==key.First()) && (0==text.Length())){
Status: ASSIGNED → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
*** Bug 71459 has been marked as a duplicate of this bug. ***
Verified on:
build: 2001-03-29-09-Mtrunk
Platform: Win NT
The url loads fine.
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•