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

Side by Side Diff: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp

Issue 2577363002: Implement CSS Logical Properties: inline/block size (Closed)
Patch Set: Fix webexposed test Created 4 years 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 * Copyright (C) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
4 * All rights reserved. 4 * All rights reserved.
5 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 5 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
7 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 7 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
8 * Copyright (C) 2015 Google Inc. All rights reserved. 8 * Copyright (C) 2015 Google Inc. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 3355 matching lines...) Expand 10 before | Expand all | Expand 10 after
3366 case CSSPropertyWebkitPaddingEnd: 3366 case CSSPropertyWebkitPaddingEnd:
3367 case CSSPropertyWebkitPaddingStart: 3367 case CSSPropertyWebkitPaddingStart:
3368 case CSSPropertyWebkitPaddingAfter: 3368 case CSSPropertyWebkitPaddingAfter:
3369 case CSSPropertyWebkitPaddingBefore: 3369 case CSSPropertyWebkitPaddingBefore:
3370 case CSSPropertyWebkitLogicalWidth: 3370 case CSSPropertyWebkitLogicalWidth:
3371 case CSSPropertyWebkitLogicalHeight: 3371 case CSSPropertyWebkitLogicalHeight:
3372 case CSSPropertyWebkitMinLogicalWidth: 3372 case CSSPropertyWebkitMinLogicalWidth:
3373 case CSSPropertyWebkitMinLogicalHeight: 3373 case CSSPropertyWebkitMinLogicalHeight:
3374 case CSSPropertyWebkitMaxLogicalWidth: 3374 case CSSPropertyWebkitMaxLogicalWidth:
3375 case CSSPropertyWebkitMaxLogicalHeight: 3375 case CSSPropertyWebkitMaxLogicalHeight:
3376 case CSSPropertyInlineSize:
cbiesinger 2016/12/16 18:51:49 Please put these in alphabetical order (ie. above
3377 case CSSPropertyBlockSize:
3378 case CSSPropertyMinInlineSize:
3379 case CSSPropertyMinBlockSize:
3380 case CSSPropertyMaxInlineSize:
3381 case CSSPropertyMaxBlockSize:
3376 ASSERT_NOT_REACHED(); 3382 ASSERT_NOT_REACHED();
3377 return nullptr; 3383 return nullptr;
3378 3384
3379 // Unimplemented @font-face properties. 3385 // Unimplemented @font-face properties.
3380 case CSSPropertySrc: 3386 case CSSPropertySrc:
3381 case CSSPropertyUnicodeRange: 3387 case CSSPropertyUnicodeRange:
3382 return nullptr; 3388 return nullptr;
3383 3389
3384 // Other unimplemented properties. 3390 // Other unimplemented properties.
3385 case CSSPropertyPage: // for @page 3391 case CSSPropertyPage: // for @page
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
3645 case CSSPropertyAll: 3651 case CSSPropertyAll:
3646 return nullptr; 3652 return nullptr;
3647 default: 3653 default:
3648 break; 3654 break;
3649 } 3655 }
3650 ASSERT_NOT_REACHED(); 3656 ASSERT_NOT_REACHED();
3651 return nullptr; 3657 return nullptr;
3652 } 3658 }
3653 3659
3654 } // namespace blink 3660 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698