Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2555653002: [WIP Prototype] ES6 https://html.spec.whatwg.org/#fetch-a-single-module-script implementation (Closed)
Patch Set: address haraken/yhirano comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 #include "core/dom/ElementCreationOptions.h" 82 #include "core/dom/ElementCreationOptions.h"
83 #include "core/dom/ElementDataCache.h" 83 #include "core/dom/ElementDataCache.h"
84 #include "core/dom/ElementRegistrationOptions.h" 84 #include "core/dom/ElementRegistrationOptions.h"
85 #include "core/dom/ElementTraversal.h" 85 #include "core/dom/ElementTraversal.h"
86 #include "core/dom/ExceptionCode.h" 86 #include "core/dom/ExceptionCode.h"
87 #include "core/dom/ExecutionContextTask.h" 87 #include "core/dom/ExecutionContextTask.h"
88 #include "core/dom/FrameRequestCallback.h" 88 #include "core/dom/FrameRequestCallback.h"
89 #include "core/dom/IntersectionObserverController.h" 89 #include "core/dom/IntersectionObserverController.h"
90 #include "core/dom/LayoutTreeBuilderTraversal.h" 90 #include "core/dom/LayoutTreeBuilderTraversal.h"
91 #include "core/dom/LiveNodeList.h" 91 #include "core/dom/LiveNodeList.h"
92 #include "core/dom/ModulatorImpl.h"
92 #include "core/dom/MutationObserver.h" 93 #include "core/dom/MutationObserver.h"
93 #include "core/dom/NodeChildRemovalTracker.h" 94 #include "core/dom/NodeChildRemovalTracker.h"
94 #include "core/dom/NodeComputedStyle.h" 95 #include "core/dom/NodeComputedStyle.h"
95 #include "core/dom/NodeFilter.h" 96 #include "core/dom/NodeFilter.h"
96 #include "core/dom/NodeIterator.h" 97 #include "core/dom/NodeIterator.h"
97 #include "core/dom/NodeRareData.h" 98 #include "core/dom/NodeRareData.h"
98 #include "core/dom/NodeTraversal.h" 99 #include "core/dom/NodeTraversal.h"
99 #include "core/dom/NodeWithIndex.h" 100 #include "core/dom/NodeWithIndex.h"
100 #include "core/dom/NthIndexCache.h" 101 #include "core/dom/NthIndexCache.h"
101 #include "core/dom/ProcessingInstruction.h" 102 #include "core/dom/ProcessingInstruction.h"
(...skipping 6482 matching lines...) Expand 10 before | Expand all | Expand 10 after
6584 } 6585 }
6585 6586
6586 void showLiveDocumentInstances() { 6587 void showLiveDocumentInstances() {
6587 WeakDocumentSet& set = liveDocumentSet(); 6588 WeakDocumentSet& set = liveDocumentSet();
6588 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6589 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6589 for (Document* document : set) 6590 for (Document* document : set)
6590 fprintf(stderr, "- Document %p URL: %s\n", document, 6591 fprintf(stderr, "- Document %p URL: %s\n", document,
6591 document->url().getString().utf8().data()); 6592 document->url().getString().utf8().data());
6592 } 6593 }
6593 #endif 6594 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698