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

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: Rebased once again to master, fixed layout test. 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) 2013 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 case CSSPropertyMask: 447 case CSSPropertyMask:
447 case CSSPropertyMaskType: 448 case CSSPropertyMaskType:
448 case CSSPropertyMaskSourceType: 449 case CSSPropertyMaskSourceType:
449 case CSSPropertyMaxHeight: 450 case CSSPropertyMaxHeight:
450 case CSSPropertyMaxWidth: 451 case CSSPropertyMaxWidth:
451 case CSSPropertyMinHeight: 452 case CSSPropertyMinHeight:
452 case CSSPropertyMinWidth: 453 case CSSPropertyMinWidth:
453 case CSSPropertyMixBlendMode: 454 case CSSPropertyMixBlendMode:
454 case CSSPropertyObjectFit: 455 case CSSPropertyObjectFit:
455 case CSSPropertyObjectPosition: 456 case CSSPropertyObjectPosition:
457 case CSSPropertyNavDown:
458 case CSSPropertyNavLeft:
459 case CSSPropertyNavRight:
460 case CSSPropertyNavUp:
456 case CSSPropertyOpacity: 461 case CSSPropertyOpacity:
457 case CSSPropertyOutline: 462 case CSSPropertyOutline:
458 case CSSPropertyOutlineColor: 463 case CSSPropertyOutlineColor:
459 case CSSPropertyOutlineOffset: 464 case CSSPropertyOutlineOffset:
460 case CSSPropertyOutlineStyle: 465 case CSSPropertyOutlineStyle:
461 case CSSPropertyOutlineWidth: 466 case CSSPropertyOutlineWidth:
462 case CSSPropertyOverflow: 467 case CSSPropertyOverflow:
463 case CSSPropertyOverflowWrap: 468 case CSSPropertyOverflowWrap:
464 case CSSPropertyOverflowX: 469 case CSSPropertyOverflowX:
465 case CSSPropertyOverflowY: 470 case CSSPropertyOverflowY:
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 return false; 683 return false;
679 case CSSPropertyInvalid: 684 case CSSPropertyInvalid:
680 ASSERT_NOT_REACHED(); 685 ASSERT_NOT_REACHED();
681 return false; 686 return false;
682 } 687 }
683 ASSERT_NOT_REACHED(); 688 ASSERT_NOT_REACHED();
684 return false; 689 return false;
685 } 690 }
686 691
687 } // namespace WebCore 692 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698