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

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

Issue 17450016: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Applied code review suggestions. Also rebased. Created 6 years, 8 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 * Copyright (C) 2014 Opera Software ASA. All rights reserved.
4 * 5 *
5 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
9 * 10 *
10 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 14 * Library General Public License for more details.
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 case CSSPropertyMask: 445 case CSSPropertyMask:
445 case CSSPropertyMaskType: 446 case CSSPropertyMaskType:
446 case CSSPropertyMaskSourceType: 447 case CSSPropertyMaskSourceType:
447 case CSSPropertyMaxHeight: 448 case CSSPropertyMaxHeight:
448 case CSSPropertyMaxWidth: 449 case CSSPropertyMaxWidth:
449 case CSSPropertyMinHeight: 450 case CSSPropertyMinHeight:
450 case CSSPropertyMinWidth: 451 case CSSPropertyMinWidth:
451 case CSSPropertyMixBlendMode: 452 case CSSPropertyMixBlendMode:
452 case CSSPropertyObjectFit: 453 case CSSPropertyObjectFit:
453 case CSSPropertyObjectPosition: 454 case CSSPropertyObjectPosition:
455 case CSSPropertyNavDown:
456 case CSSPropertyNavLeft:
457 case CSSPropertyNavRight:
458 case CSSPropertyNavUp:
454 case CSSPropertyOpacity: 459 case CSSPropertyOpacity:
455 case CSSPropertyOutline: 460 case CSSPropertyOutline:
456 case CSSPropertyOutlineColor: 461 case CSSPropertyOutlineColor:
457 case CSSPropertyOutlineOffset: 462 case CSSPropertyOutlineOffset:
458 case CSSPropertyOutlineStyle: 463 case CSSPropertyOutlineStyle:
459 case CSSPropertyOutlineWidth: 464 case CSSPropertyOutlineWidth:
460 case CSSPropertyOverflow: 465 case CSSPropertyOverflow:
461 case CSSPropertyOverflowWrap: 466 case CSSPropertyOverflowWrap:
462 case CSSPropertyOverflowX: 467 case CSSPropertyOverflowX:
463 case CSSPropertyOverflowY: 468 case CSSPropertyOverflowY:
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 return false; 682 return false;
678 case CSSPropertyInvalid: 683 case CSSPropertyInvalid:
679 ASSERT_NOT_REACHED(); 684 ASSERT_NOT_REACHED();
680 return false; 685 return false;
681 } 686 }
682 ASSERT_NOT_REACHED(); 687 ASSERT_NOT_REACHED();
683 return false; 688 return false;
684 } 689 }
685 690
686 } // namespace WebCore 691 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698