| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * 1999 Waldo Bastian (bastian@kde.org) | 3 * 1999 Waldo Bastian (bastian@kde.org) |
| 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights | 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights |
| 5 * reserved. | 5 * reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 PseudoStart, | 196 PseudoStart, |
| 197 PseudoEnd, | 197 PseudoEnd, |
| 198 PseudoDoubleButton, | 198 PseudoDoubleButton, |
| 199 PseudoSingleButton, | 199 PseudoSingleButton, |
| 200 PseudoNoButton, | 200 PseudoNoButton, |
| 201 PseudoSelection, | 201 PseudoSelection, |
| 202 PseudoLeftPage, | 202 PseudoLeftPage, |
| 203 PseudoRightPage, | 203 PseudoRightPage, |
| 204 PseudoFirstPage, | 204 PseudoFirstPage, |
| 205 PseudoFullScreen, | 205 PseudoFullScreen, |
| 206 PseudoFullScreenAncestor, | |
| 207 PseudoInRange, | 206 PseudoInRange, |
| 208 PseudoOutOfRange, | 207 PseudoOutOfRange, |
| 209 // Pseudo elements in UA ShadowRoots. Available in any stylesheets. | 208 // Pseudo elements in UA ShadowRoots. Available in any stylesheets. |
| 210 PseudoWebKitCustomElement, | 209 PseudoWebKitCustomElement, |
| 211 // Pseudo elements in UA ShadowRoots. Availble only in UA stylesheets. | 210 // Pseudo elements in UA ShadowRoots. Availble only in UA stylesheets. |
| 212 PseudoBlinkInternalElement, | 211 PseudoBlinkInternalElement, |
| 213 PseudoCue, | 212 PseudoCue, |
| 214 PseudoFutureCue, | 213 PseudoFutureCue, |
| 215 PseudoPastCue, | 214 PseudoPastCue, |
| 216 PseudoUnresolved, | 215 PseudoUnresolved, |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 } | 532 } |
| 534 | 533 |
| 535 inline bool CSSSelector::isIdClassOrAttributeSelector() const { | 534 inline bool CSSSelector::isIdClassOrAttributeSelector() const { |
| 536 return isAttributeSelector() || match() == CSSSelector::Id || | 535 return isAttributeSelector() || match() == CSSSelector::Id || |
| 537 match() == CSSSelector::Class; | 536 match() == CSSSelector::Class; |
| 538 } | 537 } |
| 539 | 538 |
| 540 } // namespace blink | 539 } // namespace blink |
| 541 | 540 |
| 542 #endif // CSSSelector_h | 541 #endif // CSSSelector_h |
| OLD | NEW |