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

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: Added tests 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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 case CSSPropertyMarginLeft: 437 case CSSPropertyMarginLeft:
438 case CSSPropertyMarginRight: 438 case CSSPropertyMarginRight:
439 case CSSPropertyMarginTop: 439 case CSSPropertyMarginTop:
440 case CSSPropertyMask: 440 case CSSPropertyMask:
441 case CSSPropertyMaskType: 441 case CSSPropertyMaskType:
442 case CSSPropertyMaxHeight: 442 case CSSPropertyMaxHeight:
443 case CSSPropertyMaxWidth: 443 case CSSPropertyMaxWidth:
444 case CSSPropertyMinHeight: 444 case CSSPropertyMinHeight:
445 case CSSPropertyMinWidth: 445 case CSSPropertyMinWidth:
446 case CSSPropertyMixBlendMode: 446 case CSSPropertyMixBlendMode:
447 case CSSPropertyNavDown:
448 case CSSPropertyNavLeft:
449 case CSSPropertyNavRight:
450 case CSSPropertyNavUp:
447 case CSSPropertyOpacity: 451 case CSSPropertyOpacity:
448 case CSSPropertyOutline: 452 case CSSPropertyOutline:
449 case CSSPropertyOutlineColor: 453 case CSSPropertyOutlineColor:
450 case CSSPropertyOutlineOffset: 454 case CSSPropertyOutlineOffset:
451 case CSSPropertyOutlineStyle: 455 case CSSPropertyOutlineStyle:
452 case CSSPropertyOutlineWidth: 456 case CSSPropertyOutlineWidth:
453 case CSSPropertyOverflow: 457 case CSSPropertyOverflow:
454 case CSSPropertyOverflowWrap: 458 case CSSPropertyOverflowWrap:
455 case CSSPropertyOverflowX: 459 case CSSPropertyOverflowX:
456 case CSSPropertyOverflowY: 460 case CSSPropertyOverflowY:
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 return false; 669 return false;
666 case CSSPropertyInvalid: 670 case CSSPropertyInvalid:
667 ASSERT_NOT_REACHED(); 671 ASSERT_NOT_REACHED();
668 return false; 672 return false;
669 } 673 }
670 ASSERT_NOT_REACHED(); 674 ASSERT_NOT_REACHED();
671 return false; 675 return false;
672 } 676 }
673 677
674 } // namespace WebCore 678 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698