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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 case CSSPropertyStrokeDashoffset: | 364 case CSSPropertyStrokeDashoffset: |
365 case CSSPropertyStrokeLinecap: | 365 case CSSPropertyStrokeLinecap: |
366 case CSSPropertyStrokeLinejoin: | 366 case CSSPropertyStrokeLinejoin: |
367 case CSSPropertyStrokeMiterlimit: | 367 case CSSPropertyStrokeMiterlimit: |
368 case CSSPropertyStrokeOpacity: | 368 case CSSPropertyStrokeOpacity: |
369 case CSSPropertyStrokeWidth: | 369 case CSSPropertyStrokeWidth: |
370 case CSSPropertyShapeRendering: | 370 case CSSPropertyShapeRendering: |
371 case CSSPropertyTextAnchor: | 371 case CSSPropertyTextAnchor: |
372 case CSSPropertyWritingMode: | 372 case CSSPropertyWritingMode: |
373 #endif | 373 #endif |
374 #if ENABLE(TOUCH_EVENTS) | |
375 case CSSPropertyWebkitTapHighlightColor: | 374 case CSSPropertyWebkitTapHighlightColor: |
376 #endif | |
377 return true; | 375 return true; |
378 case CSSPropertyDisplay: | 376 case CSSPropertyDisplay: |
379 case CSSPropertyZoom: | 377 case CSSPropertyZoom: |
380 case CSSPropertyBackground: | 378 case CSSPropertyBackground: |
381 case CSSPropertyBackgroundAttachment: | 379 case CSSPropertyBackgroundAttachment: |
382 #if ENABLE(CSS_COMPOSITING) | 380 #if ENABLE(CSS_COMPOSITING) |
383 case CSSPropertyBackgroundBlendMode: | 381 case CSSPropertyBackgroundBlendMode: |
384 #endif | 382 #endif |
385 case CSSPropertyBackgroundClip: | 383 case CSSPropertyBackgroundClip: |
386 case CSSPropertyBackgroundColor: | 384 case CSSPropertyBackgroundColor: |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
702 } | 700 } |
703 | 701 |
704 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 702 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
705 { | 703 { |
706 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); | 704 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
707 info.addMember(m_value, "value"); | 705 info.addMember(m_value, "value"); |
708 info.ignoreMember(m_metadata); | 706 info.ignoreMember(m_metadata); |
709 } | 707 } |
710 | 708 |
711 } // namespace WebCore | 709 } // namespace WebCore |
OLD | NEW |