| 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 14 matching lines...) Expand all Loading... |
| 25 * Boston, MA 02110-1301, USA. | 25 * Boston, MA 02110-1301, USA. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "core/dom/Document.h" | 28 #include "core/dom/Document.h" |
| 29 | 29 |
| 30 #include "bindings/core/v8/CustomElementConstructorBuilder.h" | 30 #include "bindings/core/v8/CustomElementConstructorBuilder.h" |
| 31 #include "bindings/core/v8/DOMDataStore.h" | 31 #include "bindings/core/v8/DOMDataStore.h" |
| 32 #include "bindings/core/v8/ExceptionMessages.h" | 32 #include "bindings/core/v8/ExceptionMessages.h" |
| 33 #include "bindings/core/v8/ExceptionState.h" | 33 #include "bindings/core/v8/ExceptionState.h" |
| 34 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | 34 #include "bindings/core/v8/ExceptionStatePlaceholder.h" |
| 35 #include "bindings/core/v8/Microtask.h" | |
| 36 #include "bindings/core/v8/ScriptCallStack.h" | 35 #include "bindings/core/v8/ScriptCallStack.h" |
| 37 #include "bindings/core/v8/ScriptController.h" | 36 #include "bindings/core/v8/ScriptController.h" |
| 38 #include "bindings/core/v8/UnionTypesCore.h" | 37 #include "bindings/core/v8/UnionTypesCore.h" |
| 39 #include "bindings/core/v8/V8DOMWrapper.h" | 38 #include "bindings/core/v8/V8DOMWrapper.h" |
| 40 #include "bindings/core/v8/V8PerIsolateData.h" | 39 #include "bindings/core/v8/V8PerIsolateData.h" |
| 41 #include "bindings/core/v8/WindowProxy.h" | 40 #include "bindings/core/v8/WindowProxy.h" |
| 42 #include "core/HTMLElementFactory.h" | 41 #include "core/HTMLElementFactory.h" |
| 43 #include "core/HTMLNames.h" | 42 #include "core/HTMLNames.h" |
| 44 #include "core/SVGElementFactory.h" | 43 #include "core/SVGElementFactory.h" |
| 45 #include "core/SVGNames.h" | 44 #include "core/SVGNames.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 73 #include "core/dom/Element.h" | 72 #include "core/dom/Element.h" |
| 74 #include "core/dom/ElementDataCache.h" | 73 #include "core/dom/ElementDataCache.h" |
| 75 #include "core/dom/ElementRegistrationOptions.h" | 74 #include "core/dom/ElementRegistrationOptions.h" |
| 76 #include "core/dom/ElementTraversal.h" | 75 #include "core/dom/ElementTraversal.h" |
| 77 #include "core/dom/ExceptionCode.h" | 76 #include "core/dom/ExceptionCode.h" |
| 78 #include "core/dom/ExecutionContextTask.h" | 77 #include "core/dom/ExecutionContextTask.h" |
| 79 #include "core/dom/FrameRequestCallback.h" | 78 #include "core/dom/FrameRequestCallback.h" |
| 80 #include "core/dom/IntersectionObserverController.h" | 79 #include "core/dom/IntersectionObserverController.h" |
| 81 #include "core/dom/LayoutTreeBuilderTraversal.h" | 80 #include "core/dom/LayoutTreeBuilderTraversal.h" |
| 82 #include "core/dom/MainThreadTaskRunner.h" | 81 #include "core/dom/MainThreadTaskRunner.h" |
| 82 #include "core/dom/Microtask.h" |
| 83 #include "core/dom/MutationObserver.h" | 83 #include "core/dom/MutationObserver.h" |
| 84 #include "core/dom/NodeChildRemovalTracker.h" | 84 #include "core/dom/NodeChildRemovalTracker.h" |
| 85 #include "core/dom/NodeComputedStyle.h" | 85 #include "core/dom/NodeComputedStyle.h" |
| 86 #include "core/dom/NodeFilter.h" | 86 #include "core/dom/NodeFilter.h" |
| 87 #include "core/dom/NodeIntersectionObserverData.h" | 87 #include "core/dom/NodeIntersectionObserverData.h" |
| 88 #include "core/dom/NodeIterator.h" | 88 #include "core/dom/NodeIterator.h" |
| 89 #include "core/dom/NodeRareData.h" | 89 #include "core/dom/NodeRareData.h" |
| 90 #include "core/dom/NodeTraversal.h" | 90 #include "core/dom/NodeTraversal.h" |
| 91 #include "core/dom/NodeWithIndex.h" | 91 #include "core/dom/NodeWithIndex.h" |
| 92 #include "core/dom/NthIndexCache.h" | 92 #include "core/dom/NthIndexCache.h" |
| (...skipping 5941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6034 #ifndef NDEBUG | 6034 #ifndef NDEBUG |
| 6035 using namespace blink; | 6035 using namespace blink; |
| 6036 void showLiveDocumentInstances() | 6036 void showLiveDocumentInstances() |
| 6037 { | 6037 { |
| 6038 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 6038 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
| 6039 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6039 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 6040 for (Document* document : set) | 6040 for (Document* document : set) |
| 6041 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); | 6041 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); |
| 6042 } | 6042 } |
| 6043 #endif | 6043 #endif |
| OLD | NEW |