| 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 case CSSPropertyWebkitHyphenateCharacter: | 323 case CSSPropertyWebkitHyphenateCharacter: |
| 324 case CSSPropertyWebkitHyphenateLimitAfter: | 324 case CSSPropertyWebkitHyphenateLimitAfter: |
| 325 case CSSPropertyWebkitHyphenateLimitBefore: | 325 case CSSPropertyWebkitHyphenateLimitBefore: |
| 326 case CSSPropertyWebkitHyphenateLimitLines: | 326 case CSSPropertyWebkitHyphenateLimitLines: |
| 327 case CSSPropertyWebkitHyphens: | 327 case CSSPropertyWebkitHyphens: |
| 328 case CSSPropertyWebkitLineAlign: | 328 case CSSPropertyWebkitLineAlign: |
| 329 case CSSPropertyWebkitLineBoxContain: | 329 case CSSPropertyWebkitLineBoxContain: |
| 330 case CSSPropertyWebkitLineBreak: | 330 case CSSPropertyWebkitLineBreak: |
| 331 case CSSPropertyWebkitLineGrid: | 331 case CSSPropertyWebkitLineGrid: |
| 332 case CSSPropertyWebkitLineSnap: | 332 case CSSPropertyWebkitLineSnap: |
| 333 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING) | |
| 334 case CSSPropertyWebkitOverflowScrolling: | |
| 335 #endif | |
| 336 case CSSPropertyWebkitPrintColorAdjust: | 333 case CSSPropertyWebkitPrintColorAdjust: |
| 337 case CSSPropertyWebkitRtlOrdering: | 334 case CSSPropertyWebkitRtlOrdering: |
| 338 case CSSPropertyWebkitRubyPosition: | 335 case CSSPropertyWebkitRubyPosition: |
| 339 case CSSPropertyWebkitTapHighlightColor: | 336 case CSSPropertyWebkitTapHighlightColor: |
| 340 case CSSPropertyWebkitTextCombine: | 337 case CSSPropertyWebkitTextCombine: |
| 341 #if ENABLE(CSS3_TEXT) | 338 #if ENABLE(CSS3_TEXT) |
| 342 case CSSPropertyWebkitTextAlignLast: | 339 case CSSPropertyWebkitTextAlignLast: |
| 343 case CSSPropertyWebkitTextUnderlinePosition: | 340 case CSSPropertyWebkitTextUnderlinePosition: |
| 344 #endif // CSS3_TEXT | 341 #endif // CSS3_TEXT |
| 345 case CSSPropertyWebkitTextDecorationsInEffect: | 342 case CSSPropertyWebkitTextDecorationsInEffect: |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 } | 669 } |
| 673 | 670 |
| 674 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 671 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
| 675 { | 672 { |
| 676 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 673 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
| 677 info.addMember(m_value, "value"); | 674 info.addMember(m_value, "value"); |
| 678 info.ignoreMember(m_metadata); | 675 info.ignoreMember(m_metadata); |
| 679 } | 676 } |
| 680 | 677 |
| 681 } // namespace WebCore | 678 } // namespace WebCore |
| OLD | NEW |