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 22 matching lines...) Expand all Loading... |
33 #include "XMLNames.h" | 33 #include "XMLNames.h" |
34 #include "core/css/resolver/StyleResolver.h" | 34 #include "core/css/resolver/StyleResolver.h" |
35 #include "core/css/resolver/StyleResolverStats.h" | 35 #include "core/css/resolver/StyleResolverStats.h" |
36 #include "core/dom/ContainerNode.h" | 36 #include "core/dom/ContainerNode.h" |
37 #include "core/dom/Document.h" | 37 #include "core/dom/Document.h" |
38 #include "core/dom/ElementTraversal.h" | 38 #include "core/dom/ElementTraversal.h" |
39 #include "core/dom/FullscreenElementStack.h" | 39 #include "core/dom/FullscreenElementStack.h" |
40 #include "core/dom/Node.h" | 40 #include "core/dom/Node.h" |
41 #include "core/dom/NodeRenderStyle.h" | 41 #include "core/dom/NodeRenderStyle.h" |
42 #include "core/dom/QualifiedName.h" | 42 #include "core/dom/QualifiedName.h" |
43 #include "core/dom/SiblingRuleHelper.h" | |
44 #include "core/dom/SpaceSplitString.h" | 43 #include "core/dom/SpaceSplitString.h" |
45 #include "core/dom/shadow/ElementShadow.h" | 44 #include "core/dom/shadow/ElementShadow.h" |
46 #include "core/dom/shadow/InsertionPoint.h" | 45 #include "core/dom/shadow/InsertionPoint.h" |
47 #include "core/html/HTMLElement.h" | 46 #include "core/html/HTMLElement.h" |
48 #include "core/html/HTMLInputElement.h" | 47 #include "core/html/HTMLInputElement.h" |
49 #include "core/html/HTMLOptGroupElement.h" | 48 #include "core/html/HTMLOptGroupElement.h" |
50 #include "core/rendering/style/RenderStyle.h" | 49 #include "core/rendering/style/RenderStyle.h" |
51 #include "core/svg/SVGElement.h" | 50 #include "core/svg/SVGElement.h" |
52 #include "wtf/HashSet.h" | 51 #include "wtf/HashSet.h" |
53 #include "wtf/text/AtomicString.h" | 52 #include "wtf/text/AtomicString.h" |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 INCREMENT_STYLE_STATS_COUNTER(m_styleResolver, sharedStyleRejectedBySibl
ingRules); | 324 INCREMENT_STYLE_STATS_COUNTER(m_styleResolver, sharedStyleRejectedBySibl
ingRules); |
326 return 0; | 325 return 0; |
327 } | 326 } |
328 | 327 |
329 if (matchesRuleSet(m_uncommonAttributeRuleSet)) { | 328 if (matchesRuleSet(m_uncommonAttributeRuleSet)) { |
330 INCREMENT_STYLE_STATS_COUNTER(m_styleResolver, sharedStyleRejectedByUnco
mmonAttributeRules); | 329 INCREMENT_STYLE_STATS_COUNTER(m_styleResolver, sharedStyleRejectedByUnco
mmonAttributeRules); |
331 return 0; | 330 return 0; |
332 } | 331 } |
333 | 332 |
334 // Tracking child index requires unique style for each node. This may get se
t by the sibling rule match above. | 333 // Tracking child index requires unique style for each node. This may get se
t by the sibling rule match above. |
335 if (!SiblingRuleHelper(element().parentElementOrShadowRoot()).childrenSuppor
tStyleSharing()) { | 334 if (!element().parentElementOrShadowRoot()->childrenSupportStyleSharing()) { |
336 INCREMENT_STYLE_STATS_COUNTER(m_styleResolver, sharedStyleRejectedByPare
nt); | 335 INCREMENT_STYLE_STATS_COUNTER(m_styleResolver, sharedStyleRejectedByPare
nt); |
337 return 0; | 336 return 0; |
338 } | 337 } |
339 | 338 |
340 return shareElement->renderStyle(); | 339 return shareElement->renderStyle(); |
341 } | 340 } |
342 | 341 |
343 } | 342 } |
OLD | NEW |