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

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

Issue 17090005: [CSS Grid Layout] Implement 'justify-self' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed a bug in parseColor uncovered by the patch Created 6 years, 11 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/CSSPrimitiveValueMappings.h ('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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 case CSSPropertyDisplay: 432 case CSSPropertyDisplay:
433 case CSSPropertyDominantBaseline: 433 case CSSPropertyDominantBaseline:
434 case CSSPropertyEnableBackground: 434 case CSSPropertyEnableBackground:
435 case CSSPropertyFilter: 435 case CSSPropertyFilter:
436 case CSSPropertyFloat: 436 case CSSPropertyFloat:
437 case CSSPropertyFloodColor: 437 case CSSPropertyFloodColor:
438 case CSSPropertyFloodOpacity: 438 case CSSPropertyFloodOpacity:
439 case CSSPropertyFontStretch: 439 case CSSPropertyFontStretch:
440 case CSSPropertyHeight: 440 case CSSPropertyHeight:
441 case CSSPropertyIsolation: 441 case CSSPropertyIsolation:
442 case CSSPropertyJustifySelf:
442 case CSSPropertyLeft: 443 case CSSPropertyLeft:
443 case CSSPropertyLightingColor: 444 case CSSPropertyLightingColor:
444 case CSSPropertyMargin: 445 case CSSPropertyMargin:
445 case CSSPropertyMarginBottom: 446 case CSSPropertyMarginBottom:
446 case CSSPropertyMarginLeft: 447 case CSSPropertyMarginLeft:
447 case CSSPropertyMarginRight: 448 case CSSPropertyMarginRight:
448 case CSSPropertyMarginTop: 449 case CSSPropertyMarginTop:
449 case CSSPropertyMask: 450 case CSSPropertyMask:
450 case CSSPropertyMaskType: 451 case CSSPropertyMaskType:
451 case CSSPropertyMaskSourceType: 452 case CSSPropertyMaskSourceType:
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 return false; 683 return false;
683 case CSSPropertyInvalid: 684 case CSSPropertyInvalid:
684 ASSERT_NOT_REACHED(); 685 ASSERT_NOT_REACHED();
685 return false; 686 return false;
686 } 687 }
687 ASSERT_NOT_REACHED(); 688 ASSERT_NOT_REACHED();
688 return false; 689 return false;
689 } 690 }
690 691
691 } // namespace WebCore 692 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSPrimitiveValueMappings.h ('k') | Source/core/css/CSSPropertyNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698