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

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

Issue 149373004: [CSS Grid Layout] Implementation of the grid-template shorthand. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@grid-template-working
Patch Set: 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
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 CSSPropertyGridTemplate:
596 case CSSPropertyGridTemplateColumns: 597 case CSSPropertyGridTemplateColumns:
597 case CSSPropertyGridTemplateRows: 598 case CSSPropertyGridTemplateRows:
598 case CSSPropertyGridRow: 599 case CSSPropertyGridRow:
599 case CSSPropertyGridRowEnd: 600 case CSSPropertyGridRowEnd:
600 case CSSPropertyGridRowStart: 601 case CSSPropertyGridRowStart:
601 case CSSPropertyGridTemplateAreas: 602 case CSSPropertyGridTemplateAreas:
602 case CSSPropertyJustifyContent: 603 case CSSPropertyJustifyContent:
603 case CSSPropertyWebkitLineClamp: 604 case CSSPropertyWebkitLineClamp:
604 case CSSPropertyWebkitLogicalHeight: 605 case CSSPropertyWebkitLogicalHeight:
605 case CSSPropertyWebkitLogicalWidth: 606 case CSSPropertyWebkitLogicalWidth:
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 return false; 685 return false;
685 case CSSPropertyInvalid: 686 case CSSPropertyInvalid:
686 ASSERT_NOT_REACHED(); 687 ASSERT_NOT_REACHED();
687 return false; 688 return false;
688 } 689 }
689 ASSERT_NOT_REACHED(); 690 ASSERT_NOT_REACHED();
690 return false; 691 return false;
691 } 692 }
692 693
693 } // namespace WebCore 694 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698