| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 case CSSPropertyStroke: | 302 case CSSPropertyStroke: |
| 303 case CSSPropertyStrokeDasharray: | 303 case CSSPropertyStrokeDasharray: |
| 304 case CSSPropertyStrokeDashoffset: | 304 case CSSPropertyStrokeDashoffset: |
| 305 case CSSPropertyStrokeLinecap: | 305 case CSSPropertyStrokeLinecap: |
| 306 case CSSPropertyStrokeLinejoin: | 306 case CSSPropertyStrokeLinejoin: |
| 307 case CSSPropertyStrokeMiterlimit: | 307 case CSSPropertyStrokeMiterlimit: |
| 308 case CSSPropertyStrokeOpacity: | 308 case CSSPropertyStrokeOpacity: |
| 309 case CSSPropertyStrokeWidth: | 309 case CSSPropertyStrokeWidth: |
| 310 case CSSPropertyTabSize: | 310 case CSSPropertyTabSize: |
| 311 case CSSPropertyTextAlign: | 311 case CSSPropertyTextAlign: |
| 312 case CSSPropertyTextAlignLast: |
| 312 case CSSPropertyTextAnchor: | 313 case CSSPropertyTextAnchor: |
| 313 case CSSPropertyTextDecoration: | 314 case CSSPropertyTextDecoration: |
| 314 case CSSPropertyTextDecorationLine: | 315 case CSSPropertyTextDecorationLine: |
| 315 case CSSPropertyTextIndent: | 316 case CSSPropertyTextIndent: |
| 316 case CSSPropertyTextRendering: | 317 case CSSPropertyTextRendering: |
| 317 case CSSPropertyTextShadow: | 318 case CSSPropertyTextShadow: |
| 318 case CSSPropertyTextTransform: | 319 case CSSPropertyTextTransform: |
| 319 case CSSPropertyVariable: | 320 case CSSPropertyVariable: |
| 320 case CSSPropertyVisibility: | 321 case CSSPropertyVisibility: |
| 321 case CSSPropertyWebkitAspectRatio: | 322 case CSSPropertyWebkitAspectRatio: |
| (...skipping 15 matching lines...) Expand all Loading... |
| 337 case CSSPropertyWebkitLineBoxContain: | 338 case CSSPropertyWebkitLineBoxContain: |
| 338 case CSSPropertyWebkitLineBreak: | 339 case CSSPropertyWebkitLineBreak: |
| 339 case CSSPropertyWebkitLineGrid: | 340 case CSSPropertyWebkitLineGrid: |
| 340 case CSSPropertyWebkitLineSnap: | 341 case CSSPropertyWebkitLineSnap: |
| 341 case CSSPropertyWebkitPrintColorAdjust: | 342 case CSSPropertyWebkitPrintColorAdjust: |
| 342 case CSSPropertyWebkitRtlOrdering: | 343 case CSSPropertyWebkitRtlOrdering: |
| 343 case CSSPropertyWebkitRubyPosition: | 344 case CSSPropertyWebkitRubyPosition: |
| 344 case CSSPropertyWebkitTapHighlightColor: | 345 case CSSPropertyWebkitTapHighlightColor: |
| 345 case CSSPropertyWebkitTextCombine: | 346 case CSSPropertyWebkitTextCombine: |
| 346 #if ENABLE(CSS3_TEXT) | 347 #if ENABLE(CSS3_TEXT) |
| 347 case CSSPropertyWebkitTextAlignLast: | |
| 348 case CSSPropertyWebkitTextUnderlinePosition: | 348 case CSSPropertyWebkitTextUnderlinePosition: |
| 349 #endif // CSS3_TEXT | 349 #endif // CSS3_TEXT |
| 350 case CSSPropertyWebkitTextDecorationsInEffect: | 350 case CSSPropertyWebkitTextDecorationsInEffect: |
| 351 case CSSPropertyWebkitTextEmphasis: | 351 case CSSPropertyWebkitTextEmphasis: |
| 352 case CSSPropertyWebkitTextEmphasisColor: | 352 case CSSPropertyWebkitTextEmphasisColor: |
| 353 case CSSPropertyWebkitTextEmphasisPosition: | 353 case CSSPropertyWebkitTextEmphasisPosition: |
| 354 case CSSPropertyWebkitTextEmphasisStyle: | 354 case CSSPropertyWebkitTextEmphasisStyle: |
| 355 case CSSPropertyWebkitTextFillColor: | 355 case CSSPropertyWebkitTextFillColor: |
| 356 case CSSPropertyWebkitTextOrientation: | 356 case CSSPropertyWebkitTextOrientation: |
| 357 case CSSPropertyWebkitTextSecurity: | 357 case CSSPropertyWebkitTextSecurity: |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 } | 677 } |
| 678 | 678 |
| 679 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 679 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
| 680 { | 680 { |
| 681 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 681 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
| 682 info.addMember(m_value, "value"); | 682 info.addMember(m_value, "value"); |
| 683 info.ignoreMember(m_metadata); | 683 info.ignoreMember(m_metadata); |
| 684 } | 684 } |
| 685 | 685 |
| 686 } // namespace WebCore | 686 } // namespace WebCore |
| OLD | NEW |