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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp

Issue 2241993002: CSS Motion Path: New names for properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 3 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 * Copyright (C) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 CSSPropertyListStyleType, 127 CSSPropertyListStyleType,
128 CSSPropertyMarginBottom, 128 CSSPropertyMarginBottom,
129 CSSPropertyMarginLeft, 129 CSSPropertyMarginLeft,
130 CSSPropertyMarginRight, 130 CSSPropertyMarginRight,
131 CSSPropertyMarginTop, 131 CSSPropertyMarginTop,
132 CSSPropertyMaxHeight, 132 CSSPropertyMaxHeight,
133 CSSPropertyMaxWidth, 133 CSSPropertyMaxWidth,
134 CSSPropertyMinHeight, 134 CSSPropertyMinHeight,
135 CSSPropertyMinWidth, 135 CSSPropertyMinWidth,
136 CSSPropertyMixBlendMode, 136 CSSPropertyMixBlendMode,
137 CSSPropertyMotionOffset,
138 CSSPropertyMotionPath,
139 CSSPropertyMotionRotation,
140 CSSPropertyObjectFit, 137 CSSPropertyObjectFit,
141 CSSPropertyObjectPosition, 138 CSSPropertyObjectPosition,
139 CSSPropertyOffsetDistance,
140 CSSPropertyOffsetPath,
141 CSSPropertyOffsetRotation,
142 CSSPropertyOpacity, 142 CSSPropertyOpacity,
143 CSSPropertyOrphans, 143 CSSPropertyOrphans,
144 CSSPropertyOutlineColor, 144 CSSPropertyOutlineColor,
145 CSSPropertyOutlineOffset, 145 CSSPropertyOutlineOffset,
146 CSSPropertyOutlineStyle, 146 CSSPropertyOutlineStyle,
147 CSSPropertyOutlineWidth, 147 CSSPropertyOutlineWidth,
148 CSSPropertyOverflowAnchor, 148 CSSPropertyOverflowAnchor,
149 CSSPropertyOverflowWrap, 149 CSSPropertyOverflowWrap,
150 CSSPropertyOverflowX, 150 CSSPropertyOverflowX,
151 CSSPropertyOverflowY, 151 CSSPropertyOverflowY,
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only."); 698 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only.");
699 } 699 }
700 700
701 DEFINE_TRACE(CSSComputedStyleDeclaration) 701 DEFINE_TRACE(CSSComputedStyleDeclaration)
702 { 702 {
703 visitor->trace(m_node); 703 visitor->trace(m_node);
704 CSSStyleDeclaration::trace(visitor); 704 CSSStyleDeclaration::trace(visitor);
705 } 705 }
706 706
707 } // namespace blink 707 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698