| 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 3013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3024 // Only imports on master documents can trigger rendering. | 3024 // Only imports on master documents can trigger rendering. |
| 3025 if (HTMLImportLoader* import = importLoader()) | 3025 if (HTMLImportLoader* import = importLoader()) |
| 3026 import->didRemoveAllPendingStylesheet(); | 3026 import->didRemoveAllPendingStylesheet(); |
| 3027 if (!haveImportsLoaded()) | 3027 if (!haveImportsLoaded()) |
| 3028 return; | 3028 return; |
| 3029 didLoadAllScriptBlockingResources(); | 3029 didLoadAllScriptBlockingResources(); |
| 3030 } | 3030 } |
| 3031 | 3031 |
| 3032 void Document::didLoadAllScriptBlockingResources() | 3032 void Document::didLoadAllScriptBlockingResources() |
| 3033 { | 3033 { |
| 3034 TaskRunnerHelper::getLoadingTaskRunner(this)->postTask(BLINK_FROM_HERE, m_ex
ecuteScriptsWaitingForResourcesTask->cancelAndCreate()); | 3034 TaskRunnerHelper::get(TaskType::Networking, this)->postTask(BLINK_FROM_HERE,
m_executeScriptsWaitingForResourcesTask->cancelAndCreate()); |
| 3035 | 3035 |
| 3036 if (isHTMLDocument() && body()) { | 3036 if (isHTMLDocument() && body()) { |
| 3037 // For HTML if we have no more stylesheets to load and we're past the bo
dy | 3037 // For HTML if we have no more stylesheets to load and we're past the bo
dy |
| 3038 // tag, we should have something to paint so resume. | 3038 // tag, we should have something to paint so resume. |
| 3039 beginLifecycleUpdatesIfRenderingReady(); | 3039 beginLifecycleUpdatesIfRenderingReady(); |
| 3040 } else if (!isHTMLDocument() && documentElement()) { | 3040 } else if (!isHTMLDocument() && documentElement()) { |
| 3041 // For non-HTML there is no body so resume as soon as the sheets are loa
ded. | 3041 // For non-HTML there is no body so resume as soon as the sheets are loa
ded. |
| 3042 beginLifecycleUpdatesIfRenderingReady(); | 3042 beginLifecycleUpdatesIfRenderingReady(); |
| 3043 } | 3043 } |
| 3044 | 3044 |
| (...skipping 2987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6032 } | 6032 } |
| 6033 | 6033 |
| 6034 void showLiveDocumentInstances() | 6034 void showLiveDocumentInstances() |
| 6035 { | 6035 { |
| 6036 WeakDocumentSet& set = liveDocumentSet(); | 6036 WeakDocumentSet& set = liveDocumentSet(); |
| 6037 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6037 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 6038 for (Document* document : set) | 6038 for (Document* document : set) |
| 6039 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); | 6039 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); |
| 6040 } | 6040 } |
| 6041 #endif | 6041 #endif |
| OLD | NEW |