OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. |
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 #include "core/css/RuleSet.h" | 57 #include "core/css/RuleSet.h" |
58 #include "core/css/StylePropertySet.h" | 58 #include "core/css/StylePropertySet.h" |
59 #include "core/css/resolver/AnimatedStyleBuilder.h" | 59 #include "core/css/resolver/AnimatedStyleBuilder.h" |
60 #include "core/css/resolver/MatchResult.h" | 60 #include "core/css/resolver/MatchResult.h" |
61 #include "core/css/resolver/MediaQueryResult.h" | 61 #include "core/css/resolver/MediaQueryResult.h" |
62 #include "core/css/resolver/SharedStyleFinder.h" | 62 #include "core/css/resolver/SharedStyleFinder.h" |
63 #include "core/css/resolver/StyleAdjuster.h" | 63 #include "core/css/resolver/StyleAdjuster.h" |
64 #include "core/css/resolver/StyleBuilder.h" | 64 #include "core/css/resolver/StyleBuilder.h" |
65 #include "core/css/resolver/ViewportStyleResolver.h" | 65 #include "core/css/resolver/ViewportStyleResolver.h" |
66 #include "core/dom/NodeRenderStyle.h" | 66 #include "core/dom/NodeRenderStyle.h" |
67 #include "core/dom/NodeRenderingContext.h" | |
68 #include "core/dom/StyleSheetCollections.h" | 67 #include "core/dom/StyleSheetCollections.h" |
69 #include "core/dom/Text.h" | 68 #include "core/dom/Text.h" |
70 #include "core/dom/shadow/ElementShadow.h" | 69 #include "core/dom/shadow/ElementShadow.h" |
71 #include "core/dom/shadow/ShadowRoot.h" | 70 #include "core/dom/shadow/ShadowRoot.h" |
72 #include "core/html/HTMLIFrameElement.h" | 71 #include "core/html/HTMLIFrameElement.h" |
73 #include "core/inspector/InspectorInstrumentation.h" | 72 #include "core/inspector/InspectorInstrumentation.h" |
74 #include "core/page/Frame.h" | 73 #include "core/page/Frame.h" |
75 #include "core/page/FrameView.h" | 74 #include "core/page/FrameView.h" |
76 #include "core/rendering/RenderView.h" | 75 #include "core/rendering/RenderView.h" |
77 #include "core/rendering/style/KeyframeList.h" | 76 #include "core/rendering/style/KeyframeList.h" |
(...skipping 1436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1514 m_matchedPropertiesSearches, m_matchedPropertiesHit, m_matchedProperties
SharedInheritedHit, m_matchedPropertiesToCache, m_matchedPropertiesEnteredIntoCa
che); | 1513 m_matchedPropertiesSearches, m_matchedPropertiesHit, m_matchedProperties
SharedInheritedHit, m_matchedPropertiesToCache, m_matchedPropertiesEnteredIntoCa
che); |
1515 | 1514 |
1516 fprintf(stderr, "Total:\n"); | 1515 fprintf(stderr, "Total:\n"); |
1517 printStyleStats(m_totalSearches, m_totalElementsEligibleForSharing, m_totalS
tylesShared, m_totalSearchFoundSiblingForSharing, m_totalSearchesMissedSharing, | 1516 printStyleStats(m_totalSearches, m_totalElementsEligibleForSharing, m_totalS
tylesShared, m_totalSearchFoundSiblingForSharing, m_totalSearchesMissedSharing, |
1518 m_totalMatchedPropertiesSearches, m_totalMatchedPropertiesHit, m_totalMa
tchedPropertiesSharedInheritedHit, m_totalMatchedPropertiesToCache, m_totalMatch
edPropertiesEnteredIntoCache); | 1517 m_totalMatchedPropertiesSearches, m_totalMatchedPropertiesHit, m_totalMa
tchedPropertiesSharedInheritedHit, m_totalMatchedPropertiesToCache, m_totalMatch
edPropertiesEnteredIntoCache); |
1519 fprintf(stderr, "-----------------------------------------------------------
---------------------\n"); | 1518 fprintf(stderr, "-----------------------------------------------------------
---------------------\n"); |
1520 } | 1519 } |
1521 #endif | 1520 #endif |
1522 | 1521 |
1523 } // namespace WebCore | 1522 } // namespace WebCore |
OLD | NEW |