| 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 | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All |
| 7 * rights reserved. | 7 * rights reserved. |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
| (...skipping 3211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3222 | 3222 |
| 3223 void Document::DispatchUnloadEvents() { | 3223 void Document::DispatchUnloadEvents() { |
| 3224 PluginScriptForbiddenScope forbid_plugin_destructor_scripting; | 3224 PluginScriptForbiddenScope forbid_plugin_destructor_scripting; |
| 3225 if (parser_) | 3225 if (parser_) |
| 3226 parser_->StopParsing(); | 3226 parser_->StopParsing(); |
| 3227 | 3227 |
| 3228 if (load_event_progress_ == kLoadEventNotRun) | 3228 if (load_event_progress_ == kLoadEventNotRun) |
| 3229 return; | 3229 return; |
| 3230 | 3230 |
| 3231 if (load_event_progress_ <= kUnloadEventInProgress) { | 3231 if (load_event_progress_ <= kUnloadEventInProgress) { |
| 3232 if (GetPage()) | |
| 3233 GetPage()->WillUnloadDocument(*this); | |
| 3234 Element* current_focused_element = FocusedElement(); | 3232 Element* current_focused_element = FocusedElement(); |
| 3235 if (isHTMLInputElement(current_focused_element)) | 3233 if (isHTMLInputElement(current_focused_element)) |
| 3236 toHTMLInputElement(*current_focused_element).EndEditing(); | 3234 toHTMLInputElement(*current_focused_element).EndEditing(); |
| 3237 if (load_event_progress_ < kPageHideInProgress) { | 3235 if (load_event_progress_ < kPageHideInProgress) { |
| 3238 load_event_progress_ = kPageHideInProgress; | 3236 load_event_progress_ = kPageHideInProgress; |
| 3239 if (LocalDOMWindow* window = domWindow()) | 3237 if (LocalDOMWindow* window = domWindow()) |
| 3240 window->DispatchEvent( | 3238 window->DispatchEvent( |
| 3241 PageTransitionEvent::Create(EventTypeNames::pagehide, false), this); | 3239 PageTransitionEvent::Create(EventTypeNames::pagehide, false), this); |
| 3242 if (!frame_) | 3240 if (!frame_) |
| 3243 return; | 3241 return; |
| (...skipping 3656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6900 } | 6898 } |
| 6901 | 6899 |
| 6902 void showLiveDocumentInstances() { | 6900 void showLiveDocumentInstances() { |
| 6903 WeakDocumentSet& set = liveDocumentSet(); | 6901 WeakDocumentSet& set = liveDocumentSet(); |
| 6904 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6902 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 6905 for (blink::Document* document : set) | 6903 for (blink::Document* document : set) |
| 6906 fprintf(stderr, "- Document %p URL: %s\n", document, | 6904 fprintf(stderr, "- Document %p URL: %s\n", document, |
| 6907 document->Url().GetString().Utf8().data()); | 6905 document->Url().GetString().Utf8().data()); |
| 6908 } | 6906 } |
| 6909 #endif | 6907 #endif |
| OLD | NEW |