| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 if (document().containsValidityStyleRules()) { | 268 if (document().containsValidityStyleRules()) { |
| 269 if (candidate.isValidElement() != element().isValidElement()) | 269 if (candidate.isValidElement() != element().isValidElement()) |
| 270 return false; | 270 return false; |
| 271 } | 271 } |
| 272 | 272 |
| 273 return true; | 273 return true; |
| 274 } | 274 } |
| 275 | 275 |
| 276 bool SharedStyleFinder::documentContainsValidCandidate() const | 276 bool SharedStyleFinder::documentContainsValidCandidate() const |
| 277 { | 277 { |
| 278 for (Element& element : ElementTraversal::from(document().documentElement())
) { | 278 for (Element& element : ElementTraversal::startsAt(document().documentElemen
t())) { |
| 279 if (element.supportsStyleSharing() && canShareStyleWithElement(element)) | 279 if (element.supportsStyleSharing() && canShareStyleWithElement(element)) |
| 280 return true; | 280 return true; |
| 281 } | 281 } |
| 282 return false; | 282 return false; |
| 283 } | 283 } |
| 284 | 284 |
| 285 inline Element* SharedStyleFinder::findElementForStyleSharing() const | 285 inline Element* SharedStyleFinder::findElementForStyleSharing() const |
| 286 { | 286 { |
| 287 StyleSharingList& styleSharingList = m_styleResolver.styleSharingList(); | 287 StyleSharingList& styleSharingList = m_styleResolver.styleSharingList(); |
| 288 for (StyleSharingList::iterator it = styleSharingList.begin(); it != styleSh
aringList.end(); ++it) { | 288 for (StyleSharingList::iterator it = styleSharingList.begin(); it != styleSh
aringList.end(); ++it) { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 // Tracking child index requires unique style for each node. This may get se
t by the sibling rule match above. | 341 // Tracking child index requires unique style for each node. This may get se
t by the sibling rule match above. |
| 342 if (!element().parentElementOrShadowRoot()->childrenSupportStyleSharing()) { | 342 if (!element().parentElementOrShadowRoot()->childrenSupportStyleSharing()) { |
| 343 INCREMENT_STYLE_STATS_COUNTER(m_styleResolver, sharedStyleRejectedByPare
nt); | 343 INCREMENT_STYLE_STATS_COUNTER(m_styleResolver, sharedStyleRejectedByPare
nt); |
| 344 return 0; | 344 return 0; |
| 345 } | 345 } |
| 346 | 346 |
| 347 return shareElement->renderStyle(); | 347 return shareElement->renderStyle(); |
| 348 } | 348 } |
| 349 | 349 |
| 350 } | 350 } |
| OLD | NEW |