OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 , m_iterationCountSet(false) | 42 , m_iterationCountSet(false) |
43 , m_nameSet(false) | 43 , m_nameSet(false) |
44 , m_playStateSet(false) | 44 , m_playStateSet(false) |
45 , m_propertySet(false) | 45 , m_propertySet(false) |
46 , m_timingFunctionSet(false) | 46 , m_timingFunctionSet(false) |
47 , m_isNone(false) | 47 , m_isNone(false) |
48 { | 48 { |
49 } | 49 } |
50 | 50 |
51 CSSAnimationData::CSSAnimationData(const CSSAnimationData& o) | 51 CSSAnimationData::CSSAnimationData(const CSSAnimationData& o) |
52 : RefCounted<CSSAnimationData>() | 52 : m_name(o.m_name) |
53 , m_name(o.m_name) | |
54 , m_property(o.m_property) | 53 , m_property(o.m_property) |
55 , m_mode(o.m_mode) | 54 , m_mode(o.m_mode) |
56 , m_iterationCount(o.m_iterationCount) | 55 , m_iterationCount(o.m_iterationCount) |
57 , m_delay(o.m_delay) | 56 , m_delay(o.m_delay) |
58 , m_duration(o.m_duration) | 57 , m_duration(o.m_duration) |
59 , m_timingFunction(o.m_timingFunction) | 58 , m_timingFunction(o.m_timingFunction) |
60 , m_direction(o.m_direction) | 59 , m_direction(o.m_direction) |
61 , m_fillMode(o.m_fillMode) | 60 , m_fillMode(o.m_fillMode) |
62 , m_playState(o.m_playState) | 61 , m_playState(o.m_playState) |
63 , m_delaySet(o.m_delaySet) | 62 , m_delaySet(o.m_delaySet) |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 && m_isNone == o->m_isNone; | 118 && m_isNone == o->m_isNone; |
120 } | 119 } |
121 | 120 |
122 const AtomicString& CSSAnimationData::initialAnimationName() | 121 const AtomicString& CSSAnimationData::initialAnimationName() |
123 { | 122 { |
124 DEFINE_STATIC_LOCAL(const AtomicString, initialValue, ("none")); | 123 DEFINE_STATIC_LOCAL(const AtomicString, initialValue, ("none")); |
125 return initialValue; | 124 return initialValue; |
126 } | 125 } |
127 | 126 |
128 } // namespace WebCore | 127 } // namespace WebCore |
OLD | NEW |