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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 case CSSPropertyFlexShrink: | 582 case CSSPropertyFlexShrink: |
583 case CSSPropertyFlexWrap: | 583 case CSSPropertyFlexWrap: |
584 case CSSPropertyWebkitFontSizeDelta: | 584 case CSSPropertyWebkitFontSizeDelta: |
585 case CSSPropertyGridArea: | 585 case CSSPropertyGridArea: |
586 case CSSPropertyGridAutoColumns: | 586 case CSSPropertyGridAutoColumns: |
587 case CSSPropertyGridAutoFlow: | 587 case CSSPropertyGridAutoFlow: |
588 case CSSPropertyGridAutoRows: | 588 case CSSPropertyGridAutoRows: |
589 case CSSPropertyGridColumn: | 589 case CSSPropertyGridColumn: |
590 case CSSPropertyGridColumnEnd: | 590 case CSSPropertyGridColumnEnd: |
591 case CSSPropertyGridColumnStart: | 591 case CSSPropertyGridColumnStart: |
| 592 case CSSPropertyGridTemplate: |
592 case CSSPropertyGridTemplateColumns: | 593 case CSSPropertyGridTemplateColumns: |
593 case CSSPropertyGridTemplateRows: | 594 case CSSPropertyGridTemplateRows: |
594 case CSSPropertyGridRow: | 595 case CSSPropertyGridRow: |
595 case CSSPropertyGridRowEnd: | 596 case CSSPropertyGridRowEnd: |
596 case CSSPropertyGridRowStart: | 597 case CSSPropertyGridRowStart: |
597 case CSSPropertyGridTemplateAreas: | 598 case CSSPropertyGridTemplateAreas: |
598 case CSSPropertyJustifyContent: | 599 case CSSPropertyJustifyContent: |
599 case CSSPropertyWebkitLineClamp: | 600 case CSSPropertyWebkitLineClamp: |
600 case CSSPropertyWebkitLogicalHeight: | 601 case CSSPropertyWebkitLogicalHeight: |
601 case CSSPropertyWebkitLogicalWidth: | 602 case CSSPropertyWebkitLogicalWidth: |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 return false; | 675 return false; |
675 case CSSPropertyInvalid: | 676 case CSSPropertyInvalid: |
676 ASSERT_NOT_REACHED(); | 677 ASSERT_NOT_REACHED(); |
677 return false; | 678 return false; |
678 } | 679 } |
679 ASSERT_NOT_REACHED(); | 680 ASSERT_NOT_REACHED(); |
680 return false; | 681 return false; |
681 } | 682 } |
682 | 683 |
683 } // namespace WebCore | 684 } // namespace WebCore |
OLD | NEW |