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 330 matching lines...) Loading... |
341 case CSSPropertyWebkitLineGrid: | 341 case CSSPropertyWebkitLineGrid: |
342 case CSSPropertyWebkitLineSnap: | 342 case CSSPropertyWebkitLineSnap: |
343 case CSSPropertyWebkitNbspMode: | 343 case CSSPropertyWebkitNbspMode: |
344 case CSSPropertyWebkitPrintColorAdjust: | 344 case CSSPropertyWebkitPrintColorAdjust: |
345 case CSSPropertyWebkitRtlOrdering: | 345 case CSSPropertyWebkitRtlOrdering: |
346 case CSSPropertyWebkitRubyPosition: | 346 case CSSPropertyWebkitRubyPosition: |
347 case CSSPropertyWebkitTapHighlightColor: | 347 case CSSPropertyWebkitTapHighlightColor: |
348 case CSSPropertyWebkitTextCombine: | 348 case CSSPropertyWebkitTextCombine: |
349 #if ENABLE(CSS3_TEXT) | 349 #if ENABLE(CSS3_TEXT) |
350 case CSSPropertyWebkitTextAlignLast: | 350 case CSSPropertyWebkitTextAlignLast: |
| 351 case CSSPropertyWebkitTextJustify: |
351 case CSSPropertyWebkitTextUnderlinePosition: | 352 case CSSPropertyWebkitTextUnderlinePosition: |
352 #endif // CSS3_TEXT | 353 #endif // CSS3_TEXT |
353 case CSSPropertyWebkitTextDecorationsInEffect: | 354 case CSSPropertyWebkitTextDecorationsInEffect: |
354 case CSSPropertyWebkitTextEmphasis: | 355 case CSSPropertyWebkitTextEmphasis: |
355 case CSSPropertyWebkitTextEmphasisColor: | 356 case CSSPropertyWebkitTextEmphasisColor: |
356 case CSSPropertyWebkitTextEmphasisPosition: | 357 case CSSPropertyWebkitTextEmphasisPosition: |
357 case CSSPropertyWebkitTextEmphasisStyle: | 358 case CSSPropertyWebkitTextEmphasisStyle: |
358 case CSSPropertyWebkitTextFillColor: | 359 case CSSPropertyWebkitTextFillColor: |
359 case CSSPropertyWebkitTextOrientation: | 360 case CSSPropertyWebkitTextOrientation: |
360 case CSSPropertyWebkitTextSecurity: | 361 case CSSPropertyWebkitTextSecurity: |
(...skipping 319 matching lines...) Loading... |
680 } | 681 } |
681 | 682 |
682 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 683 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
683 { | 684 { |
684 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 685 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
685 info.addMember(m_value, "value"); | 686 info.addMember(m_value, "value"); |
686 info.ignoreMember(m_metadata); | 687 info.ignoreMember(m_metadata); |
687 } | 688 } |
688 | 689 |
689 } // namespace WebCore | 690 } // namespace WebCore |
OLD | NEW |