| 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 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 case CSSPropertyTextIndent: | 307 case CSSPropertyTextIndent: |
| 308 case CSSPropertyTextRendering: | 308 case CSSPropertyTextRendering: |
| 309 case CSSPropertyTextShadow: | 309 case CSSPropertyTextShadow: |
| 310 case CSSPropertyTextTransform: | 310 case CSSPropertyTextTransform: |
| 311 case CSSPropertyVariable: | 311 case CSSPropertyVariable: |
| 312 case CSSPropertyVisibility: | 312 case CSSPropertyVisibility: |
| 313 case CSSPropertyWebkitAspectRatio: | 313 case CSSPropertyWebkitAspectRatio: |
| 314 case CSSPropertyWebkitBorderHorizontalSpacing: | 314 case CSSPropertyWebkitBorderHorizontalSpacing: |
| 315 case CSSPropertyWebkitBorderVerticalSpacing: | 315 case CSSPropertyWebkitBorderVerticalSpacing: |
| 316 case CSSPropertyWebkitBoxDirection: | 316 case CSSPropertyWebkitBoxDirection: |
| 317 case CSSPropertyWebkitColorCorrection: | |
| 318 case CSSPropertyWebkitFontFeatureSettings: | 317 case CSSPropertyWebkitFontFeatureSettings: |
| 319 case CSSPropertyWebkitFontKerning: | 318 case CSSPropertyWebkitFontKerning: |
| 320 case CSSPropertyWebkitFontSmoothing: | 319 case CSSPropertyWebkitFontSmoothing: |
| 321 case CSSPropertyWebkitFontVariantLigatures: | 320 case CSSPropertyWebkitFontVariantLigatures: |
| 322 case CSSPropertyWebkitLocale: | 321 case CSSPropertyWebkitLocale: |
| 323 case CSSPropertyWebkitHighlight: | 322 case CSSPropertyWebkitHighlight: |
| 324 case CSSPropertyWebkitHyphenateCharacter: | 323 case CSSPropertyWebkitHyphenateCharacter: |
| 325 case CSSPropertyWebkitHyphenateLimitAfter: | 324 case CSSPropertyWebkitHyphenateLimitAfter: |
| 326 case CSSPropertyWebkitHyphenateLimitBefore: | 325 case CSSPropertyWebkitHyphenateLimitBefore: |
| 327 case CSSPropertyWebkitHyphenateLimitLines: | 326 case CSSPropertyWebkitHyphenateLimitLines: |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 } | 674 } |
| 676 | 675 |
| 677 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 676 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
| 678 { | 677 { |
| 679 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 678 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
| 680 info.addMember(m_value, "value"); | 679 info.addMember(m_value, "value"); |
| 681 info.ignoreMember(m_metadata); | 680 info.ignoreMember(m_metadata); |
| 682 } | 681 } |
| 683 | 682 |
| 684 } // namespace WebCore | 683 } // namespace WebCore |
| OLD | NEW |