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

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

Issue 22482004: Add support for the object-fit CSS property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Oops, sorry! Forgot to update UseCounter.cpp Created 7 years, 4 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 case CSSPropertyMarginLeft: 435 case CSSPropertyMarginLeft:
436 case CSSPropertyMarginRight: 436 case CSSPropertyMarginRight:
437 case CSSPropertyMarginTop: 437 case CSSPropertyMarginTop:
438 case CSSPropertyMask: 438 case CSSPropertyMask:
439 case CSSPropertyMaskType: 439 case CSSPropertyMaskType:
440 case CSSPropertyMaxHeight: 440 case CSSPropertyMaxHeight:
441 case CSSPropertyMaxWidth: 441 case CSSPropertyMaxWidth:
442 case CSSPropertyMinHeight: 442 case CSSPropertyMinHeight:
443 case CSSPropertyMinWidth: 443 case CSSPropertyMinWidth:
444 case CSSPropertyMixBlendMode: 444 case CSSPropertyMixBlendMode:
445 case CSSPropertyObjectFit:
445 case CSSPropertyOpacity: 446 case CSSPropertyOpacity:
446 case CSSPropertyOutline: 447 case CSSPropertyOutline:
447 case CSSPropertyOutlineColor: 448 case CSSPropertyOutlineColor:
448 case CSSPropertyOutlineOffset: 449 case CSSPropertyOutlineOffset:
449 case CSSPropertyOutlineStyle: 450 case CSSPropertyOutlineStyle:
450 case CSSPropertyOutlineWidth: 451 case CSSPropertyOutlineWidth:
451 case CSSPropertyOverflow: 452 case CSSPropertyOverflow:
452 case CSSPropertyOverflowWrap: 453 case CSSPropertyOverflowWrap:
453 case CSSPropertyOverflowX: 454 case CSSPropertyOverflowX:
454 case CSSPropertyOverflowY: 455 case CSSPropertyOverflowY:
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 return false; 666 return false;
666 case CSSPropertyInvalid: 667 case CSSPropertyInvalid:
667 ASSERT_NOT_REACHED(); 668 ASSERT_NOT_REACHED();
668 return false; 669 return false;
669 } 670 }
670 ASSERT_NOT_REACHED(); 671 ASSERT_NOT_REACHED();
671 return false; 672 return false;
672 } 673 }
673 674
674 } // namespace WebCore 675 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698