| OLD | NEW |
| 1 /** | 1 /** |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. | 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. |
| 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 case CSSPropertyStrokeDashoffset: | 303 case CSSPropertyStrokeDashoffset: |
| 304 case CSSPropertyStrokeLinecap: | 304 case CSSPropertyStrokeLinecap: |
| 305 case CSSPropertyStrokeLinejoin: | 305 case CSSPropertyStrokeLinejoin: |
| 306 case CSSPropertyStrokeMiterlimit: | 306 case CSSPropertyStrokeMiterlimit: |
| 307 case CSSPropertyStrokeOpacity: | 307 case CSSPropertyStrokeOpacity: |
| 308 case CSSPropertyStrokeWidth: | 308 case CSSPropertyStrokeWidth: |
| 309 case CSSPropertyTabSize: | 309 case CSSPropertyTabSize: |
| 310 case CSSPropertyTextAlign: | 310 case CSSPropertyTextAlign: |
| 311 case CSSPropertyTextAlignLast: | 311 case CSSPropertyTextAlignLast: |
| 312 case CSSPropertyTextAnchor: | 312 case CSSPropertyTextAnchor: |
| 313 case CSSPropertyTextDecoration: | |
| 314 case CSSPropertyTextDecorationLine: | |
| 315 case CSSPropertyTextIndent: | 313 case CSSPropertyTextIndent: |
| 316 case CSSPropertyTextRendering: | 314 case CSSPropertyTextRendering: |
| 317 case CSSPropertyTextShadow: | 315 case CSSPropertyTextShadow: |
| 318 case CSSPropertyTextTransform: | 316 case CSSPropertyTextTransform: |
| 319 case CSSPropertyVariable: | 317 case CSSPropertyVariable: |
| 320 case CSSPropertyVisibility: | 318 case CSSPropertyVisibility: |
| 321 case CSSPropertyWebkitAspectRatio: | 319 case CSSPropertyWebkitAspectRatio: |
| 322 case CSSPropertyWebkitBorderHorizontalSpacing: | 320 case CSSPropertyWebkitBorderHorizontalSpacing: |
| 323 case CSSPropertyWebkitBorderVerticalSpacing: | 321 case CSSPropertyWebkitBorderVerticalSpacing: |
| 324 case CSSPropertyWebkitBoxDirection: | 322 case CSSPropertyWebkitBoxDirection: |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 case CSSPropertyPageBreakAfter: | 461 case CSSPropertyPageBreakAfter: |
| 464 case CSSPropertyPageBreakBefore: | 462 case CSSPropertyPageBreakBefore: |
| 465 case CSSPropertyPageBreakInside: | 463 case CSSPropertyPageBreakInside: |
| 466 case CSSPropertyPosition: | 464 case CSSPropertyPosition: |
| 467 case CSSPropertyRight: | 465 case CSSPropertyRight: |
| 468 case CSSPropertySize: | 466 case CSSPropertySize: |
| 469 case CSSPropertySrc: | 467 case CSSPropertySrc: |
| 470 case CSSPropertyStopColor: | 468 case CSSPropertyStopColor: |
| 471 case CSSPropertyStopOpacity: | 469 case CSSPropertyStopOpacity: |
| 472 case CSSPropertyTableLayout: | 470 case CSSPropertyTableLayout: |
| 471 case CSSPropertyTextDecoration: |
| 472 case CSSPropertyTextDecorationLine: |
| 473 case CSSPropertyTextDecorationStyle: | 473 case CSSPropertyTextDecorationStyle: |
| 474 case CSSPropertyTextDecorationColor: | 474 case CSSPropertyTextDecorationColor: |
| 475 case CSSPropertyTextLineThroughColor: | 475 case CSSPropertyTextLineThroughColor: |
| 476 case CSSPropertyTextLineThroughMode: | 476 case CSSPropertyTextLineThroughMode: |
| 477 case CSSPropertyTextLineThroughStyle: | 477 case CSSPropertyTextLineThroughStyle: |
| 478 case CSSPropertyTextLineThroughWidth: | 478 case CSSPropertyTextLineThroughWidth: |
| 479 case CSSPropertyTextOverflow: | 479 case CSSPropertyTextOverflow: |
| 480 case CSSPropertyTextOverlineColor: | 480 case CSSPropertyTextOverlineColor: |
| 481 case CSSPropertyTextOverlineMode: | 481 case CSSPropertyTextOverlineMode: |
| 482 case CSSPropertyTextOverlineStyle: | 482 case CSSPropertyTextOverlineStyle: |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 return false; | 665 return false; |
| 666 case CSSPropertyInvalid: | 666 case CSSPropertyInvalid: |
| 667 ASSERT_NOT_REACHED(); | 667 ASSERT_NOT_REACHED(); |
| 668 return false; | 668 return false; |
| 669 } | 669 } |
| 670 ASSERT_NOT_REACHED(); | 670 ASSERT_NOT_REACHED(); |
| 671 return false; | 671 return false; |
| 672 } | 672 } |
| 673 | 673 |
| 674 } // namespace WebCore | 674 } // namespace WebCore |
| OLD | NEW |