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 2635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2646 if (m_loadEventProgress < PageHideInProgress) { | 2646 if (m_loadEventProgress < PageHideInProgress) { |
2647 m_loadEventProgress = PageHideInProgress; | 2647 m_loadEventProgress = PageHideInProgress; |
2648 if (LocalDOMWindow* window = domWindow()) | 2648 if (LocalDOMWindow* window = domWindow()) |
2649 window->dispatchEvent(PageTransitionEvent::create(EventTypeNames
::pagehide, false), this); | 2649 window->dispatchEvent(PageTransitionEvent::create(EventTypeNames
::pagehide, false), this); |
2650 if (!m_frame) | 2650 if (!m_frame) |
2651 return; | 2651 return; |
2652 | 2652 |
2653 // The DocumentLoader (and thus its DocumentLoadTiming) might get de
stroyed | 2653 // The DocumentLoader (and thus its DocumentLoadTiming) might get de
stroyed |
2654 // while dispatching the event, so protect it to prevent writing the
end | 2654 // while dispatching the event, so protect it to prevent writing the
end |
2655 // time into freed memory. | 2655 // time into freed memory. |
2656 RefPtrWillBeRawPtr<DocumentLoader> documentLoader = m_frame->loader(
).provisionalDocumentLoader(); | 2656 RefPtr<DocumentLoader> documentLoader = m_frame->loader().provision
alDocumentLoader(); |
2657 m_loadEventProgress = UnloadEventInProgress; | 2657 m_loadEventProgress = UnloadEventInProgress; |
2658 RefPtrWillBeRawPtr<Event> unloadEvent(Event::create(EventTypeNames::
unload)); | 2658 RefPtrWillBeRawPtr<Event> unloadEvent(Event::create(EventTypeNames::
unload)); |
2659 if (documentLoader && !documentLoader->timing().unloadEventStart() &
& !documentLoader->timing().unloadEventEnd()) { | 2659 if (documentLoader && !documentLoader->timing().unloadEventStart() &
& !documentLoader->timing().unloadEventEnd()) { |
2660 DocumentLoadTiming& timing = documentLoader->timing(); | 2660 DocumentLoadTiming& timing = documentLoader->timing(); |
2661 ASSERT(timing.navigationStart()); | 2661 ASSERT(timing.navigationStart()); |
2662 timing.markUnloadEventStart(); | 2662 timing.markUnloadEventStart(); |
2663 m_frame->localDOMWindow()->dispatchEvent(unloadEvent, this); | 2663 m_frame->localDOMWindow()->dispatchEvent(unloadEvent, this); |
2664 timing.markUnloadEventEnd(); | 2664 timing.markUnloadEventEnd(); |
2665 } else { | 2665 } else { |
2666 m_frame->localDOMWindow()->dispatchEvent(unloadEvent, m_frame->d
ocument()); | 2666 m_frame->localDOMWindow()->dispatchEvent(unloadEvent, m_frame->d
ocument()); |
(...skipping 2584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5251 return loader; | 5251 return loader; |
5252 } | 5252 } |
5253 | 5253 |
5254 Node* eventTargetNodeForDocument(Document* doc) | 5254 Node* eventTargetNodeForDocument(Document* doc) |
5255 { | 5255 { |
5256 if (!doc) | 5256 if (!doc) |
5257 return 0; | 5257 return 0; |
5258 Node* node = doc->focusedElement(); | 5258 Node* node = doc->focusedElement(); |
5259 if (!node && doc->isPluginDocument()) { | 5259 if (!node && doc->isPluginDocument()) { |
5260 PluginDocument* pluginDocument = toPluginDocument(doc); | 5260 PluginDocument* pluginDocument = toPluginDocument(doc); |
5261 node = pluginDocument->pluginNode(); | 5261 node = pluginDocument->pluginNode(); |
5262 } | 5262 } |
5263 if (!node && doc->isHTMLDocument()) | 5263 if (!node && doc->isHTMLDocument()) |
5264 node = doc->body(); | 5264 node = doc->body(); |
5265 if (!node) | 5265 if (!node) |
5266 node = doc->documentElement(); | 5266 node = doc->documentElement(); |
5267 return node; | 5267 return node; |
5268 } | 5268 } |
5269 | 5269 |
5270 void Document::adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>& quads
, LayoutObject& layoutObject) | 5270 void Document::adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>& quads
, LayoutObject& layoutObject) |
5271 { | 5271 { |
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5767 #ifndef NDEBUG | 5767 #ifndef NDEBUG |
5768 using namespace blink; | 5768 using namespace blink; |
5769 void showLiveDocumentInstances() | 5769 void showLiveDocumentInstances() |
5770 { | 5770 { |
5771 WeakDocumentSet& set = liveDocumentSet(); | 5771 WeakDocumentSet& set = liveDocumentSet(); |
5772 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5772 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5773 for (Document* document : set) | 5773 for (Document* document : set) |
5774 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5774 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
5775 } | 5775 } |
5776 #endif | 5776 #endif |
OLD | NEW |