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

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

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove now unused segmentIsEmpty Created 6 years, 9 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/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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 case CSSPropertyWebkitTransition: 651 case CSSPropertyWebkitTransition:
652 case CSSPropertyWebkitTransitionDelay: 652 case CSSPropertyWebkitTransitionDelay:
653 case CSSPropertyWebkitTransitionDuration: 653 case CSSPropertyWebkitTransitionDuration:
654 case CSSPropertyWebkitTransitionProperty: 654 case CSSPropertyWebkitTransitionProperty:
655 case CSSPropertyWebkitTransitionTimingFunction: 655 case CSSPropertyWebkitTransitionTimingFunction:
656 case CSSPropertyWebkitUserDrag: 656 case CSSPropertyWebkitUserDrag:
657 case CSSPropertyWebkitWrapFlow: 657 case CSSPropertyWebkitWrapFlow:
658 case CSSPropertyShapeMargin: 658 case CSSPropertyShapeMargin:
659 case CSSPropertyShapeImageThreshold: 659 case CSSPropertyShapeImageThreshold:
660 case CSSPropertyShapePadding: 660 case CSSPropertyShapePadding:
661 case CSSPropertyShapeInside:
662 case CSSPropertyShapeOutside: 661 case CSSPropertyShapeOutside:
663 case CSSPropertyWebkitWrapThrough: 662 case CSSPropertyWebkitWrapThrough:
664 case CSSPropertyWebkitAppRegion: 663 case CSSPropertyWebkitAppRegion:
665 case CSSPropertyWidth: 664 case CSSPropertyWidth:
666 case CSSPropertyWillChange: 665 case CSSPropertyWillChange:
667 case CSSPropertyMaxZoom: 666 case CSSPropertyMaxZoom:
668 case CSSPropertyMinZoom: 667 case CSSPropertyMinZoom:
669 case CSSPropertyOrientation: 668 case CSSPropertyOrientation:
670 case CSSPropertyUserZoom: 669 case CSSPropertyUserZoom:
671 case CSSPropertyZIndex: 670 case CSSPropertyZIndex:
672 case CSSPropertyZoom: 671 case CSSPropertyZoom:
673 return false; 672 return false;
674 case CSSPropertyInvalid: 673 case CSSPropertyInvalid:
675 ASSERT_NOT_REACHED(); 674 ASSERT_NOT_REACHED();
676 return false; 675 return false;
677 } 676 }
678 ASSERT_NOT_REACHED(); 677 ASSERT_NOT_REACHED();
679 return false; 678 return false;
680 } 679 }
681 680
682 } // namespace WebCore 681 } // 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