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

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

Issue 176853007: [CSS Grid Layout] Implementation of the grid shorthand. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed compilation error in debug. Created 6 years, 8 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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 case CSSPropertyFlexShrink: 581 case CSSPropertyFlexShrink:
582 case CSSPropertyFlexWrap: 582 case CSSPropertyFlexWrap:
583 case CSSPropertyWebkitFontSizeDelta: 583 case CSSPropertyWebkitFontSizeDelta:
584 case CSSPropertyGridArea: 584 case CSSPropertyGridArea:
585 case CSSPropertyGridAutoColumns: 585 case CSSPropertyGridAutoColumns:
586 case CSSPropertyGridAutoFlow: 586 case CSSPropertyGridAutoFlow:
587 case CSSPropertyGridAutoRows: 587 case CSSPropertyGridAutoRows:
588 case CSSPropertyGridColumn: 588 case CSSPropertyGridColumn:
589 case CSSPropertyGridColumnEnd: 589 case CSSPropertyGridColumnEnd:
590 case CSSPropertyGridColumnStart: 590 case CSSPropertyGridColumnStart:
591 case CSSPropertyGrid:
591 case CSSPropertyGridTemplate: 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:
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 return false; 679 return false;
679 case CSSPropertyInvalid: 680 case CSSPropertyInvalid:
680 ASSERT_NOT_REACHED(); 681 ASSERT_NOT_REACHED();
681 return false; 682 return false;
682 } 683 }
683 ASSERT_NOT_REACHED(); 684 ASSERT_NOT_REACHED();
684 return false; 685 return false;
685 } 686 }
686 687
687 } // namespace WebCore 688 } // 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