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 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 case CSSPropertyWebkitTransformOriginX: | 632 case CSSPropertyWebkitTransformOriginX: |
633 case CSSPropertyWebkitTransformOriginY: | 633 case CSSPropertyWebkitTransformOriginY: |
634 case CSSPropertyWebkitTransformOriginZ: | 634 case CSSPropertyWebkitTransformOriginZ: |
635 case CSSPropertyWebkitTransformStyle: | 635 case CSSPropertyWebkitTransformStyle: |
636 case CSSPropertyWebkitTransition: | 636 case CSSPropertyWebkitTransition: |
637 case CSSPropertyWebkitTransitionDelay: | 637 case CSSPropertyWebkitTransitionDelay: |
638 case CSSPropertyWebkitTransitionDuration: | 638 case CSSPropertyWebkitTransitionDuration: |
639 case CSSPropertyWebkitTransitionProperty: | 639 case CSSPropertyWebkitTransitionProperty: |
640 case CSSPropertyWebkitTransitionTimingFunction: | 640 case CSSPropertyWebkitTransitionTimingFunction: |
641 case CSSPropertyWebkitUserDrag: | 641 case CSSPropertyWebkitUserDrag: |
642 #if ENABLE(CSS_REGIONS) | |
643 case CSSPropertyWebkitFlowInto: | 642 case CSSPropertyWebkitFlowInto: |
644 case CSSPropertyWebkitFlowFrom: | 643 case CSSPropertyWebkitFlowFrom: |
645 case CSSPropertyWebkitRegionOverflow: | 644 case CSSPropertyWebkitRegionOverflow: |
646 case CSSPropertyWebkitRegionBreakAfter: | 645 case CSSPropertyWebkitRegionBreakAfter: |
647 case CSSPropertyWebkitRegionBreakBefore: | 646 case CSSPropertyWebkitRegionBreakBefore: |
648 case CSSPropertyWebkitRegionBreakInside: | 647 case CSSPropertyWebkitRegionBreakInside: |
649 #endif | |
650 case CSSPropertyWebkitWrap: | 648 case CSSPropertyWebkitWrap: |
651 case CSSPropertyWebkitWrapFlow: | 649 case CSSPropertyWebkitWrapFlow: |
652 case CSSPropertyWebkitShapeMargin: | 650 case CSSPropertyWebkitShapeMargin: |
653 case CSSPropertyWebkitShapePadding: | 651 case CSSPropertyWebkitShapePadding: |
654 case CSSPropertyWebkitShapeInside: | 652 case CSSPropertyWebkitShapeInside: |
655 case CSSPropertyWebkitShapeOutside: | 653 case CSSPropertyWebkitShapeOutside: |
656 case CSSPropertyWebkitWrapThrough: | 654 case CSSPropertyWebkitWrapThrough: |
657 #if ENABLE(SVG) | 655 #if ENABLE(SVG) |
658 case CSSPropertyClipPath: | 656 case CSSPropertyClipPath: |
659 case CSSPropertyMask: | 657 case CSSPropertyMask: |
(...skipping 30 matching lines...) Expand all Loading... |
690 } | 688 } |
691 | 689 |
692 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 690 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
693 { | 691 { |
694 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 692 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
695 info.addMember(m_value, "value"); | 693 info.addMember(m_value, "value"); |
696 info.ignoreMember(m_metadata); | 694 info.ignoreMember(m_metadata); |
697 } | 695 } |
698 | 696 |
699 } // namespace WebCore | 697 } // namespace WebCore |
OLD | NEW |