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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 case CSSPropertyTextRendering: | 284 case CSSPropertyTextRendering: |
285 case CSSPropertyTextShadow: | 285 case CSSPropertyTextShadow: |
286 case CSSPropertyTextTransform: | 286 case CSSPropertyTextTransform: |
287 case CSSPropertyVariable: | 287 case CSSPropertyVariable: |
288 case CSSPropertyVisibility: | 288 case CSSPropertyVisibility: |
289 case CSSPropertyWebkitAspectRatio: | 289 case CSSPropertyWebkitAspectRatio: |
290 case CSSPropertyWebkitBorderHorizontalSpacing: | 290 case CSSPropertyWebkitBorderHorizontalSpacing: |
291 case CSSPropertyWebkitBorderVerticalSpacing: | 291 case CSSPropertyWebkitBorderVerticalSpacing: |
292 case CSSPropertyWebkitBoxDirection: | 292 case CSSPropertyWebkitBoxDirection: |
293 case CSSPropertyWebkitColorCorrection: | 293 case CSSPropertyWebkitColorCorrection: |
294 #if ENABLE(CURSOR_VISIBILITY) | |
295 case CSSPropertyWebkitCursorVisibility: | |
296 #endif | |
297 case CSSPropertyWebkitFontFeatureSettings: | 294 case CSSPropertyWebkitFontFeatureSettings: |
298 case CSSPropertyWebkitFontKerning: | 295 case CSSPropertyWebkitFontKerning: |
299 case CSSPropertyWebkitFontSmoothing: | 296 case CSSPropertyWebkitFontSmoothing: |
300 case CSSPropertyWebkitFontVariantLigatures: | 297 case CSSPropertyWebkitFontVariantLigatures: |
301 case CSSPropertyWebkitLocale: | 298 case CSSPropertyWebkitLocale: |
302 case CSSPropertyWebkitHighlight: | 299 case CSSPropertyWebkitHighlight: |
303 case CSSPropertyWebkitHyphenateCharacter: | 300 case CSSPropertyWebkitHyphenateCharacter: |
304 case CSSPropertyWebkitHyphenateLimitAfter: | 301 case CSSPropertyWebkitHyphenateLimitAfter: |
305 case CSSPropertyWebkitHyphenateLimitBefore: | 302 case CSSPropertyWebkitHyphenateLimitBefore: |
306 case CSSPropertyWebkitHyphenateLimitLines: | 303 case CSSPropertyWebkitHyphenateLimitLines: |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 } | 692 } |
696 | 693 |
697 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 694 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
698 { | 695 { |
699 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 696 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
700 info.addMember(m_value, "value"); | 697 info.addMember(m_value, "value"); |
701 info.ignoreMember(m_metadata); | 698 info.ignoreMember(m_metadata); |
702 } | 699 } |
703 | 700 |
704 } // namespace WebCore | 701 } // namespace WebCore |
OLD | NEW |