Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: Source/core/css/CSSProperty.cpp

Issue 14907011: Support 'paint-order' from SVG2. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix review issues and add paint-order for text too Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 case CSSPropertyOverflowY: 457 case CSSPropertyOverflowY:
458 case CSSPropertyPadding: 458 case CSSPropertyPadding:
459 case CSSPropertyPaddingBottom: 459 case CSSPropertyPaddingBottom:
460 case CSSPropertyPaddingLeft: 460 case CSSPropertyPaddingLeft:
461 case CSSPropertyPaddingRight: 461 case CSSPropertyPaddingRight:
462 case CSSPropertyPaddingTop: 462 case CSSPropertyPaddingTop:
463 case CSSPropertyPage: 463 case CSSPropertyPage:
464 case CSSPropertyPageBreakAfter: 464 case CSSPropertyPageBreakAfter:
465 case CSSPropertyPageBreakBefore: 465 case CSSPropertyPageBreakBefore:
466 case CSSPropertyPageBreakInside: 466 case CSSPropertyPageBreakInside:
467 case CSSPropertyPaintOrder:
467 case CSSPropertyPosition: 468 case CSSPropertyPosition:
468 case CSSPropertyRight: 469 case CSSPropertyRight:
469 case CSSPropertySize: 470 case CSSPropertySize:
470 case CSSPropertySrc: 471 case CSSPropertySrc:
471 case CSSPropertyStopColor: 472 case CSSPropertyStopColor:
472 case CSSPropertyStopOpacity: 473 case CSSPropertyStopOpacity:
473 case CSSPropertyTableLayout: 474 case CSSPropertyTableLayout:
474 case CSSPropertyTextLineThroughColor: 475 case CSSPropertyTextLineThroughColor:
475 case CSSPropertyTextLineThroughMode: 476 case CSSPropertyTextLineThroughMode:
476 case CSSPropertyTextLineThroughStyle: 477 case CSSPropertyTextLineThroughStyle:
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698