OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
(...skipping 2148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2159 // notifyContextDestroyed() for a document that doesn't get detached. | 2159 // notifyContextDestroyed() for a document that doesn't get detached. |
2160 // If such a document has any observer, the observer won't get | 2160 // If such a document has any observer, the observer won't get |
2161 // a contextDestroyed() notification. This can happen for a document | 2161 // a contextDestroyed() notification. This can happen for a document |
2162 // created by DOMImplementation::createDocument(). | 2162 // created by DOMImplementation::createDocument(). |
2163 DocumentLifecycleNotifier::notifyContextDestroyed(); | 2163 DocumentLifecycleNotifier::notifyContextDestroyed(); |
2164 ExecutionContext::notifyContextDestroyed(); | 2164 ExecutionContext::notifyContextDestroyed(); |
2165 } | 2165 } |
2166 | 2166 |
2167 void Document::prepareForDestruction() | 2167 void Document::prepareForDestruction() |
2168 { | 2168 { |
2169 ASSERT(!m_frame || m_frame->tree().childCount() == 0); | 2169 m_markers->prepareForDestruction(); |
| 2170 disconnectDescendantFrames(); |
2170 | 2171 |
| 2172 // The process of disconnecting descendant frames could have already detache
d us. |
2171 if (!isActive()) | 2173 if (!isActive()) |
2172 return; | 2174 return; |
2173 | 2175 |
2174 ScriptForbiddenScope forbidScript; | |
2175 // We detach the FrameView's custom scroll bars as early as | |
2176 // possible to prevent detach() from messing with the view | |
2177 // such that its scroll bars won't be torn down. | |
2178 // | |
2179 // FIXME: We should revisit this. | |
2180 view()->prepareForDetach(); | |
2181 m_markers->prepareForDestruction(); | |
2182 if (LocalDOMWindow* window = this->domWindow()) | 2176 if (LocalDOMWindow* window = this->domWindow()) |
2183 window->willDetachDocumentFromFrame(); | 2177 window->willDetachDocumentFromFrame(); |
2184 detach(); | 2178 detach(); |
2185 } | 2179 } |
2186 | 2180 |
2187 void Document::removeAllEventListeners() | 2181 void Document::removeAllEventListeners() |
2188 { | 2182 { |
2189 ContainerNode::removeAllEventListeners(); | 2183 ContainerNode::removeAllEventListeners(); |
2190 | 2184 |
2191 if (LocalDOMWindow* domWindow = this->domWindow()) | 2185 if (LocalDOMWindow* domWindow = this->domWindow()) |
(...skipping 3518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5710 #ifndef NDEBUG | 5704 #ifndef NDEBUG |
5711 using namespace blink; | 5705 using namespace blink; |
5712 void showLiveDocumentInstances() | 5706 void showLiveDocumentInstances() |
5713 { | 5707 { |
5714 WeakDocumentSet& set = liveDocumentSet(); | 5708 WeakDocumentSet& set = liveDocumentSet(); |
5715 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5709 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5716 for (Document* document : set) | 5710 for (Document* document : set) |
5717 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5711 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
5718 } | 5712 } |
5719 #endif | 5713 #endif |
OLD | NEW |