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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 case CSSPropertyTextOverflow: | 478 case CSSPropertyTextOverflow: |
479 case CSSPropertyTextOverlineColor: | 479 case CSSPropertyTextOverlineColor: |
480 case CSSPropertyTextOverlineMode: | 480 case CSSPropertyTextOverlineMode: |
481 case CSSPropertyTextOverlineStyle: | 481 case CSSPropertyTextOverlineStyle: |
482 case CSSPropertyTextOverlineWidth: | 482 case CSSPropertyTextOverlineWidth: |
483 case CSSPropertyTextUnderlineColor: | 483 case CSSPropertyTextUnderlineColor: |
484 case CSSPropertyTextUnderlineMode: | 484 case CSSPropertyTextUnderlineMode: |
485 case CSSPropertyTextUnderlineStyle: | 485 case CSSPropertyTextUnderlineStyle: |
486 case CSSPropertyTextUnderlineWidth: | 486 case CSSPropertyTextUnderlineWidth: |
487 case CSSPropertyTop: | 487 case CSSPropertyTop: |
| 488 case CSSPropertyTouchAction: |
488 case CSSPropertyTransition: | 489 case CSSPropertyTransition: |
489 case CSSPropertyTransitionDelay: | 490 case CSSPropertyTransitionDelay: |
490 case CSSPropertyTransitionDuration: | 491 case CSSPropertyTransitionDuration: |
491 case CSSPropertyTransitionProperty: | 492 case CSSPropertyTransitionProperty: |
492 case CSSPropertyTransitionTimingFunction: | 493 case CSSPropertyTransitionTimingFunction: |
493 case CSSPropertyUnicodeBidi: | 494 case CSSPropertyUnicodeBidi: |
494 case CSSPropertyUnicodeRange: | 495 case CSSPropertyUnicodeRange: |
495 case CSSPropertyVectorEffect: | 496 case CSSPropertyVectorEffect: |
496 case CSSPropertyVerticalAlign: | 497 case CSSPropertyVerticalAlign: |
497 case CSSPropertyWebkitAlignContent: | 498 case CSSPropertyWebkitAlignContent: |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 } | 677 } |
677 | 678 |
678 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 679 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
679 { | 680 { |
680 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 681 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
681 info.addMember(m_value, "value"); | 682 info.addMember(m_value, "value"); |
682 info.ignoreMember(m_metadata); | 683 info.ignoreMember(m_metadata); |
683 } | 684 } |
684 | 685 |
685 } // namespace WebCore | 686 } // namespace WebCore |
OLD | NEW |