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

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

Issue 140253004: Implement 'scroll-behavior' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address review comments 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/CSSProperties.in ('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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 case CSSPropertyPaddingLeft: 472 case CSSPropertyPaddingLeft:
473 case CSSPropertyPaddingRight: 473 case CSSPropertyPaddingRight:
474 case CSSPropertyPaddingTop: 474 case CSSPropertyPaddingTop:
475 case CSSPropertyPage: 475 case CSSPropertyPage:
476 case CSSPropertyPageBreakAfter: 476 case CSSPropertyPageBreakAfter:
477 case CSSPropertyPageBreakBefore: 477 case CSSPropertyPageBreakBefore:
478 case CSSPropertyPageBreakInside: 478 case CSSPropertyPageBreakInside:
479 case CSSPropertyPaintOrder: 479 case CSSPropertyPaintOrder:
480 case CSSPropertyPosition: 480 case CSSPropertyPosition:
481 case CSSPropertyRight: 481 case CSSPropertyRight:
482 case CSSPropertyScrollBehavior:
482 case CSSPropertySize: 483 case CSSPropertySize:
483 case CSSPropertySrc: 484 case CSSPropertySrc:
484 case CSSPropertyStopColor: 485 case CSSPropertyStopColor:
485 case CSSPropertyStopOpacity: 486 case CSSPropertyStopOpacity:
486 case CSSPropertyTableLayout: 487 case CSSPropertyTableLayout:
487 case CSSPropertyTextDecoration: 488 case CSSPropertyTextDecoration:
488 case CSSPropertyTextDecorationLine: 489 case CSSPropertyTextDecorationLine:
489 case CSSPropertyTextDecorationStyle: 490 case CSSPropertyTextDecorationStyle:
490 case CSSPropertyTextDecorationColor: 491 case CSSPropertyTextDecorationColor:
491 case CSSPropertyTextLineThroughColor: 492 case CSSPropertyTextLineThroughColor:
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 return false; 684 return false;
684 case CSSPropertyInvalid: 685 case CSSPropertyInvalid:
685 ASSERT_NOT_REACHED(); 686 ASSERT_NOT_REACHED();
686 return false; 687 return false;
687 } 688 }
688 ASSERT_NOT_REACHED(); 689 ASSERT_NOT_REACHED();
689 return false; 690 return false;
690 } 691 }
691 692
692 } // namespace WebCore 693 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSProperties.in ('k') | Source/core/css/CSSPropertyNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698