| 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. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. |
| 6 * All rights reserved. | 6 * All rights reserved. |
| 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 10 * (http://www.torchmobile.com/) | 10 * (http://www.torchmobile.com/) |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 DEFINE_TRACE(MatchedProperties) { | 42 DEFINE_TRACE(MatchedProperties) { |
| 43 visitor->trace(properties); | 43 visitor->trace(properties); |
| 44 } | 44 } |
| 45 | 45 |
| 46 void MatchResult::addMatchedProperties( | 46 void MatchResult::addMatchedProperties( |
| 47 const StylePropertySet* properties, | 47 const StylePropertySet* properties, |
| 48 unsigned linkMatchType, | 48 unsigned linkMatchType, |
| 49 PropertyWhitelistType propertyWhitelistType) { | 49 PropertyWhitelistType propertyWhitelistType) { |
| 50 m_matchedProperties.grow(m_matchedProperties.size() + 1); | 50 m_matchedProperties.grow(m_matchedProperties.size() + 1); |
| 51 MatchedProperties& newProperties = m_matchedProperties.last(); | 51 MatchedProperties& newProperties = m_matchedProperties.back(); |
| 52 newProperties.properties = const_cast<StylePropertySet*>(properties); | 52 newProperties.properties = const_cast<StylePropertySet*>(properties); |
| 53 newProperties.m_types.linkMatchType = linkMatchType; | 53 newProperties.m_types.linkMatchType = linkMatchType; |
| 54 newProperties.m_types.whitelistType = propertyWhitelistType; | 54 newProperties.m_types.whitelistType = propertyWhitelistType; |
| 55 } | 55 } |
| 56 | 56 |
| 57 void MatchResult::finishAddingUARules() { | 57 void MatchResult::finishAddingUARules() { |
| 58 m_uaRangeEnd = m_matchedProperties.size(); | 58 m_uaRangeEnd = m_matchedProperties.size(); |
| 59 } | 59 } |
| 60 | 60 |
| 61 void MatchResult::finishAddingAuthorRulesForTreeScope() { | 61 void MatchResult::finishAddingAuthorRulesForTreeScope() { |
| 62 // Don't add empty ranges. | 62 // Don't add empty ranges. |
| 63 if (m_authorRangeEnds.isEmpty() && m_uaRangeEnd == m_matchedProperties.size()) | 63 if (m_authorRangeEnds.isEmpty() && m_uaRangeEnd == m_matchedProperties.size()) |
| 64 return; | 64 return; |
| 65 if (!m_authorRangeEnds.isEmpty() && | 65 if (!m_authorRangeEnds.isEmpty() && |
| 66 m_authorRangeEnds.last() == m_matchedProperties.size()) | 66 m_authorRangeEnds.back() == m_matchedProperties.size()) |
| 67 return; | 67 return; |
| 68 m_authorRangeEnds.append(m_matchedProperties.size()); | 68 m_authorRangeEnds.append(m_matchedProperties.size()); |
| 69 } | 69 } |
| 70 | 70 |
| 71 } // namespace blink | 71 } // namespace blink |
| OLD | NEW |