| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 case CSSPropertyWebkitMaskBoxImageSlice: | 853 case CSSPropertyWebkitMaskBoxImageSlice: |
| 854 case CSSPropertyWebkitMaskBoxImageSource: | 854 case CSSPropertyWebkitMaskBoxImageSource: |
| 855 case CSSPropertyWebkitMaskBoxImageWidth: | 855 case CSSPropertyWebkitMaskBoxImageWidth: |
| 856 case CSSPropertyWebkitMaskImage: | 856 case CSSPropertyWebkitMaskImage: |
| 857 case CSSPropertyWebkitMaskPositionX: | 857 case CSSPropertyWebkitMaskPositionX: |
| 858 case CSSPropertyWebkitMaskPositionY: | 858 case CSSPropertyWebkitMaskPositionY: |
| 859 case CSSPropertyWebkitMaskSize: | 859 case CSSPropertyWebkitMaskSize: |
| 860 case CSSPropertyWebkitPerspective: | 860 case CSSPropertyWebkitPerspective: |
| 861 case CSSPropertyWebkitPerspectiveOriginX: | 861 case CSSPropertyWebkitPerspectiveOriginX: |
| 862 case CSSPropertyWebkitPerspectiveOriginY: | 862 case CSSPropertyWebkitPerspectiveOriginY: |
| 863 case CSSPropertyShapeInside: | |
| 864 case CSSPropertyShapeOutside: | 863 case CSSPropertyShapeOutside: |
| 865 case CSSPropertyShapeMargin: | 864 case CSSPropertyShapeMargin: |
| 866 case CSSPropertyShapeImageThreshold: | 865 case CSSPropertyShapeImageThreshold: |
| 867 case CSSPropertyWebkitTextStrokeColor: | 866 case CSSPropertyWebkitTextStrokeColor: |
| 868 case CSSPropertyWebkitTransform: | 867 case CSSPropertyWebkitTransform: |
| 869 case CSSPropertyWebkitTransformOriginX: | 868 case CSSPropertyWebkitTransformOriginX: |
| 870 case CSSPropertyWebkitTransformOriginY: | 869 case CSSPropertyWebkitTransformOriginY: |
| 871 case CSSPropertyWebkitTransformOriginZ: | 870 case CSSPropertyWebkitTransformOriginZ: |
| 872 case CSSPropertyWidows: | 871 case CSSPropertyWidows: |
| 873 case CSSPropertyWidth: | 872 case CSSPropertyWidth: |
| (...skipping 29 matching lines...) Expand all Loading... |
| 903 } | 902 } |
| 904 | 903 |
| 905 void CSSAnimationUpdate::trace(Visitor* visitor) | 904 void CSSAnimationUpdate::trace(Visitor* visitor) |
| 906 { | 905 { |
| 907 visitor->trace(m_newTransitions); | 906 visitor->trace(m_newTransitions); |
| 908 visitor->trace(m_activeInterpolationsForAnimations); | 907 visitor->trace(m_activeInterpolationsForAnimations); |
| 909 visitor->trace(m_activeInterpolationsForTransitions); | 908 visitor->trace(m_activeInterpolationsForTransitions); |
| 910 } | 909 } |
| 911 | 910 |
| 912 } // namespace WebCore | 911 } // namespace WebCore |
| OLD | NEW |