| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 if (!checkPageSelectorComponents(rule->selector(), isLeftPage, isFirstPage, | 121 if (!checkPageSelectorComponents(rule->selector(), isLeftPage, isFirstPage, |
| 122 pageName)) | 122 pageName)) |
| 123 continue; | 123 continue; |
| 124 | 124 |
| 125 // If the rule has no properties to apply, then ignore it. | 125 // If the rule has no properties to apply, then ignore it. |
| 126 const StylePropertySet& properties = rule->properties(); | 126 const StylePropertySet& properties = rule->properties(); |
| 127 if (properties.isEmpty()) | 127 if (properties.isEmpty()) |
| 128 continue; | 128 continue; |
| 129 | 129 |
| 130 // Add this rule to our list of matched rules. | 130 // Add this rule to our list of matched rules. |
| 131 matchedRules.append(rule); | 131 matchedRules.push_back(rule); |
| 132 } | 132 } |
| 133 } | 133 } |
| 134 | 134 |
| 135 } // namespace blink | 135 } // namespace blink |
| OLD | NEW |