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

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

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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
« no previous file with comments | « Source/core/css/CSSComputedStyleDeclaration.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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 case CSSPropertyFlexShrink: 586 case CSSPropertyFlexShrink:
587 case CSSPropertyFlexWrap: 587 case CSSPropertyFlexWrap:
588 case CSSPropertyWebkitFontSizeDelta: 588 case CSSPropertyWebkitFontSizeDelta:
589 case CSSPropertyGridArea: 589 case CSSPropertyGridArea:
590 case CSSPropertyGridAutoColumns: 590 case CSSPropertyGridAutoColumns:
591 case CSSPropertyGridAutoFlow: 591 case CSSPropertyGridAutoFlow:
592 case CSSPropertyGridAutoRows: 592 case CSSPropertyGridAutoRows:
593 case CSSPropertyGridColumn: 593 case CSSPropertyGridColumn:
594 case CSSPropertyGridColumnEnd: 594 case CSSPropertyGridColumnEnd:
595 case CSSPropertyGridColumnStart: 595 case CSSPropertyGridColumnStart:
596 case CSSPropertyGridDefinitionColumns: 596 case CSSPropertyGridTemplateColumns:
597 case CSSPropertyGridDefinitionRows: 597 case CSSPropertyGridTemplateRows:
598 case CSSPropertyGridRow: 598 case CSSPropertyGridRow:
599 case CSSPropertyGridRowEnd: 599 case CSSPropertyGridRowEnd:
600 case CSSPropertyGridRowStart: 600 case CSSPropertyGridRowStart:
601 case CSSPropertyGridTemplateAreas: 601 case CSSPropertyGridTemplateAreas:
602 case CSSPropertyJustifyContent: 602 case CSSPropertyJustifyContent:
603 case CSSPropertyWebkitLineClamp: 603 case CSSPropertyWebkitLineClamp:
604 case CSSPropertyWebkitLogicalHeight: 604 case CSSPropertyWebkitLogicalHeight:
605 case CSSPropertyWebkitLogicalWidth: 605 case CSSPropertyWebkitLogicalWidth:
606 case CSSPropertyWebkitMarginAfter: 606 case CSSPropertyWebkitMarginAfter:
607 case CSSPropertyWebkitMarginAfterCollapse: 607 case CSSPropertyWebkitMarginAfterCollapse:
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 return false; 684 return false;
685 case CSSPropertyInvalid: 685 case CSSPropertyInvalid:
686 ASSERT_NOT_REACHED(); 686 ASSERT_NOT_REACHED();
687 return false; 687 return false;
688 } 688 }
689 ASSERT_NOT_REACHED(); 689 ASSERT_NOT_REACHED();
690 return false; 690 return false;
691 } 691 }
692 692
693 } // namespace WebCore 693 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSComputedStyleDeclaration.cpp ('k') | Source/core/css/CSSPropertyNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698