Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Side by Side Diff: Source/core/css/CSSProperty.cpp

Issue 18532004: Implement 'grid-template' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaselined and updated after Ojan's and Elliott's comments Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSParser-in.cpp ('k') | Source/core/css/CSSPropertyNames.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 case CSSPropertyGridAutoFlow: 576 case CSSPropertyGridAutoFlow:
577 case CSSPropertyGridAutoRows: 577 case CSSPropertyGridAutoRows:
578 case CSSPropertyGridColumn: 578 case CSSPropertyGridColumn:
579 case CSSPropertyGridColumnEnd: 579 case CSSPropertyGridColumnEnd:
580 case CSSPropertyGridColumnStart: 580 case CSSPropertyGridColumnStart:
581 case CSSPropertyGridDefinitionColumns: 581 case CSSPropertyGridDefinitionColumns:
582 case CSSPropertyGridDefinitionRows: 582 case CSSPropertyGridDefinitionRows:
583 case CSSPropertyGridRow: 583 case CSSPropertyGridRow:
584 case CSSPropertyGridRowEnd: 584 case CSSPropertyGridRowEnd:
585 case CSSPropertyGridRowStart: 585 case CSSPropertyGridRowStart:
586 case CSSPropertyGridTemplate:
586 case CSSPropertyJustifyContent: 587 case CSSPropertyJustifyContent:
587 case CSSPropertyWebkitLineClamp: 588 case CSSPropertyWebkitLineClamp:
588 case CSSPropertyWebkitLogicalHeight: 589 case CSSPropertyWebkitLogicalHeight:
589 case CSSPropertyWebkitLogicalWidth: 590 case CSSPropertyWebkitLogicalWidth:
590 case CSSPropertyWebkitMarginAfter: 591 case CSSPropertyWebkitMarginAfter:
591 case CSSPropertyWebkitMarginAfterCollapse: 592 case CSSPropertyWebkitMarginAfterCollapse:
592 case CSSPropertyWebkitMarginBefore: 593 case CSSPropertyWebkitMarginBefore:
593 case CSSPropertyWebkitMarginBeforeCollapse: 594 case CSSPropertyWebkitMarginBeforeCollapse:
594 case CSSPropertyWebkitMarginBottomCollapse: 595 case CSSPropertyWebkitMarginBottomCollapse:
595 case CSSPropertyWebkitMarginCollapse: 596 case CSSPropertyWebkitMarginCollapse:
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 return false; 669 return false;
669 case CSSPropertyInvalid: 670 case CSSPropertyInvalid:
670 ASSERT_NOT_REACHED(); 671 ASSERT_NOT_REACHED();
671 return false; 672 return false;
672 } 673 }
673 ASSERT_NOT_REACHED(); 674 ASSERT_NOT_REACHED();
674 return false; 675 return false;
675 } 676 }
676 677
677 } // namespace WebCore 678 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSParser-in.cpp ('k') | Source/core/css/CSSPropertyNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698