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

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

Issue 18532004: Implement 'grid-template' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Same change, forgot to update css-properties-as-js-properties.html result 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 | Annotate | Revision Log
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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 case CSSPropertyGridAutoFlow: 577 case CSSPropertyGridAutoFlow:
578 case CSSPropertyGridAutoRows: 578 case CSSPropertyGridAutoRows:
579 case CSSPropertyGridColumn: 579 case CSSPropertyGridColumn:
580 case CSSPropertyGridColumnEnd: 580 case CSSPropertyGridColumnEnd:
581 case CSSPropertyGridColumnStart: 581 case CSSPropertyGridColumnStart:
582 case CSSPropertyGridDefinitionColumns: 582 case CSSPropertyGridDefinitionColumns:
583 case CSSPropertyGridDefinitionRows: 583 case CSSPropertyGridDefinitionRows:
584 case CSSPropertyGridRow: 584 case CSSPropertyGridRow:
585 case CSSPropertyGridRowEnd: 585 case CSSPropertyGridRowEnd:
586 case CSSPropertyGridRowStart: 586 case CSSPropertyGridRowStart:
587 case CSSPropertyGridTemplate:
587 case CSSPropertyJustifyContent: 588 case CSSPropertyJustifyContent:
588 case CSSPropertyWebkitLineClamp: 589 case CSSPropertyWebkitLineClamp:
589 case CSSPropertyWebkitLogicalHeight: 590 case CSSPropertyWebkitLogicalHeight:
590 case CSSPropertyWebkitLogicalWidth: 591 case CSSPropertyWebkitLogicalWidth:
591 case CSSPropertyWebkitMarginAfter: 592 case CSSPropertyWebkitMarginAfter:
592 case CSSPropertyWebkitMarginAfterCollapse: 593 case CSSPropertyWebkitMarginAfterCollapse:
593 case CSSPropertyWebkitMarginBefore: 594 case CSSPropertyWebkitMarginBefore:
594 case CSSPropertyWebkitMarginBeforeCollapse: 595 case CSSPropertyWebkitMarginBeforeCollapse:
595 case CSSPropertyWebkitMarginBottomCollapse: 596 case CSSPropertyWebkitMarginBottomCollapse:
596 case CSSPropertyWebkitMarginCollapse: 597 case CSSPropertyWebkitMarginCollapse:
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 } 678 }
678 679
679 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 680 void CSSProperty::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
680 { 681 {
681 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 682 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
682 info.addMember(m_value, "value"); 683 info.addMember(m_value, "value");
683 info.ignoreMember(m_metadata); 684 info.ignoreMember(m_metadata);
684 } 685 }
685 686
686 } // namespace WebCore 687 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698