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

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

Issue 22925002: Add support to resolve unprefixed CSS animations properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 case CSSPropertyWebkitUserModify: 354 case CSSPropertyWebkitUserModify:
355 case CSSPropertyWebkitUserSelect: 355 case CSSPropertyWebkitUserSelect:
356 case CSSPropertyWebkitWritingMode: 356 case CSSPropertyWebkitWritingMode:
357 case CSSPropertyWhiteSpace: 357 case CSSPropertyWhiteSpace:
358 case CSSPropertyWidows: 358 case CSSPropertyWidows:
359 case CSSPropertyWordBreak: 359 case CSSPropertyWordBreak:
360 case CSSPropertyWordSpacing: 360 case CSSPropertyWordSpacing:
361 case CSSPropertyWordWrap: 361 case CSSPropertyWordWrap:
362 case CSSPropertyWritingMode: 362 case CSSPropertyWritingMode:
363 return true; 363 return true;
364 case CSSPropertyAnimation:
365 case CSSPropertyAnimationDelay:
366 case CSSPropertyAnimationDirection:
367 case CSSPropertyAnimationDuration:
368 case CSSPropertyAnimationFillMode:
369 case CSSPropertyAnimationIterationCount:
370 case CSSPropertyAnimationName:
371 case CSSPropertyAnimationPlayState:
372 case CSSPropertyAnimationTimingFunction:
364 case CSSPropertyAlignmentBaseline: 373 case CSSPropertyAlignmentBaseline:
365 case CSSPropertyBackground: 374 case CSSPropertyBackground:
366 case CSSPropertyBackgroundAttachment: 375 case CSSPropertyBackgroundAttachment:
367 case CSSPropertyBackgroundBlendMode: 376 case CSSPropertyBackgroundBlendMode:
368 case CSSPropertyBackgroundClip: 377 case CSSPropertyBackgroundClip:
369 case CSSPropertyBackgroundColor: 378 case CSSPropertyBackgroundColor:
370 case CSSPropertyBackgroundImage: 379 case CSSPropertyBackgroundImage:
371 case CSSPropertyBackgroundOrigin: 380 case CSSPropertyBackgroundOrigin:
372 case CSSPropertyBackgroundPosition: 381 case CSSPropertyBackgroundPosition:
373 case CSSPropertyBackgroundPositionX: 382 case CSSPropertyBackgroundPositionX:
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 return false; 674 return false;
666 case CSSPropertyInvalid: 675 case CSSPropertyInvalid:
667 ASSERT_NOT_REACHED(); 676 ASSERT_NOT_REACHED();
668 return false; 677 return false;
669 } 678 }
670 ASSERT_NOT_REACHED(); 679 ASSERT_NOT_REACHED();
671 return false; 680 return false;
672 } 681 }
673 682
674 } // namespace WebCore 683 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698