| Index: Source/WebCore/dom/Document.cpp
|
| ===================================================================
|
| --- Source/WebCore/dom/Document.cpp (revision 143055)
|
| +++ Source/WebCore/dom/Document.cpp (working copy)
|
| @@ -5771,15 +5771,12 @@
|
|
|
| bool Document::hasActiveParser()
|
| {
|
| - return m_activeParserCount || (m_parser && m_parser->processingData());
|
| + return m_parser && m_parser->processingData();
|
| }
|
|
|
| void Document::decrementActiveParserCount()
|
| {
|
| --m_activeParserCount;
|
| - if (!frame())
|
| - return;
|
| - frame()->loader()->checkLoadComplete();
|
| }
|
|
|
| void Document::setContextFeatures(PassRefPtr<ContextFeatures> features)
|
|
|