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

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

Issue 2555543002: CSS Motion Path: Support offset-rotate in addition to offset-rotation (Closed)
Patch Set: Created 4 years 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. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
4 * All rights reserved. 4 * All rights reserved.
5 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 5 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
7 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 7 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public 10 * modify it under the terms of the GNU Lesser General Public
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 CSSPropertyFontVariantNumeric, CSSPropertyFontWeight, CSSPropertyHeight, 81 CSSPropertyFontVariantNumeric, CSSPropertyFontWeight, CSSPropertyHeight,
82 CSSPropertyImageOrientation, CSSPropertyImageRendering, 82 CSSPropertyImageOrientation, CSSPropertyImageRendering,
83 CSSPropertyIsolation, CSSPropertyJustifyItems, CSSPropertyJustifySelf, 83 CSSPropertyIsolation, CSSPropertyJustifyItems, CSSPropertyJustifySelf,
84 CSSPropertyLeft, CSSPropertyLetterSpacing, CSSPropertyLineHeight, 84 CSSPropertyLeft, CSSPropertyLetterSpacing, CSSPropertyLineHeight,
85 CSSPropertyListStyleImage, CSSPropertyListStylePosition, 85 CSSPropertyListStyleImage, CSSPropertyListStylePosition,
86 CSSPropertyListStyleType, CSSPropertyMarginBottom, CSSPropertyMarginLeft, 86 CSSPropertyListStyleType, CSSPropertyMarginBottom, CSSPropertyMarginLeft,
87 CSSPropertyMarginRight, CSSPropertyMarginTop, CSSPropertyMaxHeight, 87 CSSPropertyMarginRight, CSSPropertyMarginTop, CSSPropertyMaxHeight,
88 CSSPropertyMaxWidth, CSSPropertyMinHeight, CSSPropertyMinWidth, 88 CSSPropertyMaxWidth, CSSPropertyMinHeight, CSSPropertyMinWidth,
89 CSSPropertyMixBlendMode, CSSPropertyObjectFit, CSSPropertyObjectPosition, 89 CSSPropertyMixBlendMode, CSSPropertyObjectFit, CSSPropertyObjectPosition,
90 CSSPropertyOffsetAnchor, CSSPropertyOffsetDistance, CSSPropertyOffsetPath, 90 CSSPropertyOffsetAnchor, CSSPropertyOffsetDistance, CSSPropertyOffsetPath,
91 CSSPropertyOffsetPosition, CSSPropertyOffsetRotation, CSSPropertyOpacity, 91 CSSPropertyOffsetPosition, CSSPropertyOffsetRotate,
92 CSSPropertyOffsetRotation, CSSPropertyOpacity,
92 CSSPropertyOrphans, CSSPropertyOutlineColor, CSSPropertyOutlineOffset, 93 CSSPropertyOrphans, CSSPropertyOutlineColor, CSSPropertyOutlineOffset,
93 CSSPropertyOutlineStyle, CSSPropertyOutlineWidth, CSSPropertyOverflowAnchor, 94 CSSPropertyOutlineStyle, CSSPropertyOutlineWidth, CSSPropertyOverflowAnchor,
94 CSSPropertyOverflowWrap, CSSPropertyOverflowX, CSSPropertyOverflowY, 95 CSSPropertyOverflowWrap, CSSPropertyOverflowX, CSSPropertyOverflowY,
95 CSSPropertyPaddingBottom, CSSPropertyPaddingLeft, CSSPropertyPaddingRight, 96 CSSPropertyPaddingBottom, CSSPropertyPaddingLeft, CSSPropertyPaddingRight,
96 CSSPropertyPaddingTop, CSSPropertyPointerEvents, CSSPropertyPosition, 97 CSSPropertyPaddingTop, CSSPropertyPointerEvents, CSSPropertyPosition,
97 CSSPropertyResize, CSSPropertyRight, CSSPropertyScrollBehavior, 98 CSSPropertyResize, CSSPropertyRight, CSSPropertyScrollBehavior,
98 CSSPropertySnapHeight, CSSPropertySpeak, CSSPropertyTableLayout, 99 CSSPropertySnapHeight, CSSPropertySpeak, CSSPropertyTableLayout,
99 CSSPropertyTabSize, CSSPropertyTextAlign, CSSPropertyTextAlignLast, 100 CSSPropertyTabSize, CSSPropertyTextAlign, CSSPropertyTextAlignLast,
100 CSSPropertyTextDecoration, CSSPropertyTextDecorationLine, 101 CSSPropertyTextDecoration, CSSPropertyTextDecorationLine,
101 CSSPropertyTextDecorationStyle, CSSPropertyTextDecorationColor, 102 CSSPropertyTextDecorationStyle, CSSPropertyTextDecorationColor,
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 "These styles are computed, and therefore the '" + 559 "These styles are computed, and therefore the '" +
559 getPropertyNameString(id) + "' property is read-only."); 560 getPropertyNameString(id) + "' property is read-only.");
560 } 561 }
561 562
562 DEFINE_TRACE(CSSComputedStyleDeclaration) { 563 DEFINE_TRACE(CSSComputedStyleDeclaration) {
563 visitor->trace(m_node); 564 visitor->trace(m_node);
564 CSSStyleDeclaration::trace(visitor); 565 CSSStyleDeclaration::trace(visitor);
565 } 566 }
566 567
567 } // namespace blink 568 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698