| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index d978bc567e198a61ca0a481cb2da9c8d0857ee18..38485d7225aec9ea81619be262c6a5fd10a48108 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -900,6 +900,7 @@ public:
|
| bool processingLoadEvent() const { return m_loadEventProgress == LoadEventInProgress; }
|
| bool loadEventFinished() const { return m_loadEventProgress >= LoadEventCompleted; }
|
| bool unloadStarted() const { return m_loadEventProgress >= PageHideInProgress; }
|
| + void suppressLoadEvent() { m_loadEventProgress = LoadEventCompleted; }
|
|
|
| void setContainsPlugins() { m_containsPlugins = true; }
|
| bool containsPlugins() const { return m_containsPlugins; }
|
|
|