OLD | NEW |
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, 2007, 2008, 2012 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2012 Apple Inc. All rights reserv
ed. |
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 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1097 text = formatNumber(m_value.num, "vmax"); | 1097 text = formatNumber(m_value.num, "vmax"); |
1098 break; | 1098 break; |
1099 } | 1099 } |
1100 | 1100 |
1101 ASSERT(!cssTextCache().contains(this)); | 1101 ASSERT(!cssTextCache().contains(this)); |
1102 cssTextCache().set(this, text); | 1102 cssTextCache().set(this, text); |
1103 m_hasCachedCSSText = true; | 1103 m_hasCachedCSSText = true; |
1104 return text; | 1104 return text; |
1105 } | 1105 } |
1106 | 1106 |
1107 PassRefPtr<CSSPrimitiveValue> CSSPrimitiveValue::cloneForCSSOM() const | 1107 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> CSSPrimitiveValue::cloneForCSSOM() con
st |
1108 { | 1108 { |
1109 RefPtr<CSSPrimitiveValue> result; | 1109 RefPtrWillBeRawPtr<CSSPrimitiveValue> result; |
1110 | 1110 |
1111 switch (m_primitiveUnitType) { | 1111 switch (m_primitiveUnitType) { |
1112 case CSS_STRING: | 1112 case CSS_STRING: |
1113 case CSS_URI: | 1113 case CSS_URI: |
1114 case CSS_ATTR: | 1114 case CSS_ATTR: |
1115 case CSS_COUNTER_NAME: | 1115 case CSS_COUNTER_NAME: |
1116 result = CSSPrimitiveValue::create(m_value.string, static_cast<UnitTypes
>(m_primitiveUnitType)); | 1116 result = CSSPrimitiveValue::create(m_value.string, static_cast<UnitTypes
>(m_primitiveUnitType)); |
1117 break; | 1117 break; |
1118 case CSS_COUNTER: | 1118 case CSS_COUNTER: |
1119 result = CSSPrimitiveValue::create(m_value.counter->cloneForCSSOM()); | 1119 result = CSSPrimitiveValue::create(m_value.counter->cloneForCSSOM()); |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1265 case CSS_CALC: | 1265 case CSS_CALC: |
1266 visitor->trace(m_value.calc); | 1266 visitor->trace(m_value.calc); |
1267 break; | 1267 break; |
1268 default: | 1268 default: |
1269 break; | 1269 break; |
1270 } | 1270 } |
1271 CSSValue::traceAfterDispatch(visitor); | 1271 CSSValue::traceAfterDispatch(visitor); |
1272 } | 1272 } |
1273 | 1273 |
1274 } // namespace WebCore | 1274 } // namespace WebCore |
OLD | NEW |