| Index: WebCore/dom/XMLDocumentParser.cpp | 
| =================================================================== | 
| --- WebCore/dom/XMLDocumentParser.cpp	(revision 69799) | 
| +++ WebCore/dom/XMLDocumentParser.cpp	(working copy) | 
| @@ -132,7 +132,7 @@ | 
| if (m_sawXSLTransform || !m_sawFirstElement) | 
| m_originalSourceForTransform += parseString; | 
|  | 
| -    if (isStopped() || m_sawXSLTransform) | 
| +    if (isDetached() || m_parserStopped || m_sawXSLTransform) | 
| return; | 
|  | 
| if (m_parserPaused) { | 
| @@ -190,7 +190,7 @@ | 
|  | 
| void XMLDocumentParser::exitText() | 
| { | 
| -    if (isStopped()) | 
| +    if (m_parserStopped) | 
| return; | 
|  | 
| if (!m_currentNode || !m_currentNode->isTextNode()) | 
|  |