| 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 29 matching lines...) Expand all Loading... |
| 40 #include "sky/engine/bindings/core/v8/V8DOMWrapper.h" | 40 #include "sky/engine/bindings/core/v8/V8DOMWrapper.h" |
| 41 #include "sky/engine/bindings/core/v8/WindowProxy.h" | 41 #include "sky/engine/bindings/core/v8/WindowProxy.h" |
| 42 #include "sky/engine/core/animation/AnimationTimeline.h" | 42 #include "sky/engine/core/animation/AnimationTimeline.h" |
| 43 #include "sky/engine/core/animation/DocumentAnimations.h" | 43 #include "sky/engine/core/animation/DocumentAnimations.h" |
| 44 #include "sky/engine/core/css/CSSFontSelector.h" | 44 #include "sky/engine/core/css/CSSFontSelector.h" |
| 45 #include "sky/engine/core/css/CSSStyleDeclaration.h" | 45 #include "sky/engine/core/css/CSSStyleDeclaration.h" |
| 46 #include "sky/engine/core/css/CSSStyleSheet.h" | 46 #include "sky/engine/core/css/CSSStyleSheet.h" |
| 47 #include "sky/engine/core/css/MediaQueryMatcher.h" | 47 #include "sky/engine/core/css/MediaQueryMatcher.h" |
| 48 #include "sky/engine/core/css/StylePropertySet.h" | 48 #include "sky/engine/core/css/StylePropertySet.h" |
| 49 #include "sky/engine/core/css/StyleSheetContents.h" | 49 #include "sky/engine/core/css/StyleSheetContents.h" |
| 50 #include "sky/engine/core/css/StyleSheetList.h" | |
| 51 #include "sky/engine/core/css/parser/BisonCSSParser.h" | 50 #include "sky/engine/core/css/parser/BisonCSSParser.h" |
| 52 #include "sky/engine/core/css/resolver/FontBuilder.h" | 51 #include "sky/engine/core/css/resolver/FontBuilder.h" |
| 53 #include "sky/engine/core/css/resolver/StyleResolver.h" | 52 #include "sky/engine/core/css/resolver/StyleResolver.h" |
| 54 #include "sky/engine/core/css/resolver/StyleResolverStats.h" | 53 #include "sky/engine/core/css/resolver/StyleResolverStats.h" |
| 55 #include "sky/engine/core/dom/Attr.h" | 54 #include "sky/engine/core/dom/Attr.h" |
| 56 #include "sky/engine/core/dom/DocumentFragment.h" | 55 #include "sky/engine/core/dom/DocumentFragment.h" |
| 57 #include "sky/engine/core/dom/DocumentLifecycleNotifier.h" | 56 #include "sky/engine/core/dom/DocumentLifecycleNotifier.h" |
| 58 #include "sky/engine/core/dom/DocumentLifecycleObserver.h" | 57 #include "sky/engine/core/dom/DocumentLifecycleObserver.h" |
| 59 #include "sky/engine/core/dom/DocumentMarkerController.h" | 58 #include "sky/engine/core/dom/DocumentMarkerController.h" |
| 60 #include "sky/engine/core/dom/Element.h" | 59 #include "sky/engine/core/dom/Element.h" |
| (...skipping 2719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2780 using namespace blink; | 2779 using namespace blink; |
| 2781 void showLiveDocumentInstances() | 2780 void showLiveDocumentInstances() |
| 2782 { | 2781 { |
| 2783 WeakDocumentSet& set = liveDocumentSet(); | 2782 WeakDocumentSet& set = liveDocumentSet(); |
| 2784 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 2783 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 2785 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { | 2784 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { |
| 2786 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); | 2785 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); |
| 2787 } | 2786 } |
| 2788 } | 2787 } |
| 2789 #endif | 2788 #endif |
| OLD | NEW |