| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 case CSSPrimitiveValue::CSS_UNKNOWN: | 119 case CSSPrimitiveValue::CSS_UNKNOWN: |
| 120 case CSSPrimitiveValue::CSS_DIMENSION: | 120 case CSSPrimitiveValue::CSS_DIMENSION: |
| 121 case CSSPrimitiveValue::CSS_ATTR: | 121 case CSSPrimitiveValue::CSS_ATTR: |
| 122 case CSSPrimitiveValue::CSS_COUNTER: | 122 case CSSPrimitiveValue::CSS_COUNTER: |
| 123 case CSSPrimitiveValue::CSS_RECT: | 123 case CSSPrimitiveValue::CSS_RECT: |
| 124 case CSSPrimitiveValue::CSS_RGBCOLOR: | 124 case CSSPrimitiveValue::CSS_RGBCOLOR: |
| 125 case CSSPrimitiveValue::CSS_DPPX: | 125 case CSSPrimitiveValue::CSS_DPPX: |
| 126 case CSSPrimitiveValue::CSS_DPI: | 126 case CSSPrimitiveValue::CSS_DPI: |
| 127 case CSSPrimitiveValue::CSS_DPCM: | 127 case CSSPrimitiveValue::CSS_DPCM: |
| 128 case CSSPrimitiveValue::CSS_PAIR: | 128 case CSSPrimitiveValue::CSS_PAIR: |
| 129 #if ENABLE(DASHBOARD_SUPPORT) | |
| 130 case CSSPrimitiveValue::CSS_DASHBOARD_REGION: | |
| 131 #endif | |
| 132 case CSSPrimitiveValue::CSS_UNICODE_RANGE: | 129 case CSSPrimitiveValue::CSS_UNICODE_RANGE: |
| 133 case CSSPrimitiveValue::CSS_PARSER_OPERATOR: | 130 case CSSPrimitiveValue::CSS_PARSER_OPERATOR: |
| 134 case CSSPrimitiveValue::CSS_PARSER_INTEGER: | 131 case CSSPrimitiveValue::CSS_PARSER_INTEGER: |
| 135 case CSSPrimitiveValue::CSS_PARSER_IDENTIFIER: | 132 case CSSPrimitiveValue::CSS_PARSER_IDENTIFIER: |
| 136 case CSSPrimitiveValue::CSS_COUNTER_NAME: | 133 case CSSPrimitiveValue::CSS_COUNTER_NAME: |
| 137 case CSSPrimitiveValue::CSS_SHAPE: | 134 case CSSPrimitiveValue::CSS_SHAPE: |
| 138 case CSSPrimitiveValue::CSS_QUAD: | 135 case CSSPrimitiveValue::CSS_QUAD: |
| 139 case CSSPrimitiveValue::CSS_CALC: | 136 case CSSPrimitiveValue::CSS_CALC: |
| 140 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_NUMBER: | 137 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_NUMBER: |
| 141 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_LENGTH: | 138 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_LENGTH: |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 do { | 234 do { |
| 238 if (selector->isDistributedPseudoElement()) | 235 if (selector->isDistributedPseudoElement()) |
| 239 return selector; | 236 return selector; |
| 240 } while ((selector = selector->tagHistory())); | 237 } while ((selector = selector->tagHistory())); |
| 241 return 0; | 238 return 0; |
| 242 } | 239 } |
| 243 #endif | 240 #endif |
| 244 | 241 |
| 245 } | 242 } |
| 246 | 243 |
| OLD | NEW |