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

Side by Side Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 2461603003: CSS Motion Path: Place offset-anchor on the path (Closed)
Patch Set: anchor Created 4 years, 1 month 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
6 * rights reserved. 6 * rights reserved.
7 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
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 Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 3984 matching lines...) Expand 10 before | Expand all | Expand 10 after
3995 } 3995 }
3996 3996
3997 StyleColor decorationColorIncludingFallback(bool visitedLink) const; 3997 StyleColor decorationColorIncludingFallback(bool visitedLink) const;
3998 Color colorIncludingFallback(int colorProperty, bool visitedLink) const; 3998 Color colorIncludingFallback(int colorProperty, bool visitedLink) const;
3999 3999
4000 Color stopColor() const { return svgStyle().stopColor(); } 4000 Color stopColor() const { return svgStyle().stopColor(); }
4001 Color floodColor() const { return svgStyle().floodColor(); } 4001 Color floodColor() const { return svgStyle().floodColor(); }
4002 Color lightingColor() const { return svgStyle().lightingColor(); } 4002 Color lightingColor() const { return svgStyle().lightingColor(); }
4003 4003
4004 void addAppliedTextDecoration(const AppliedTextDecoration&); 4004 void addAppliedTextDecoration(const AppliedTextDecoration&);
4005 void applyMotionPathTransform(float originX, 4005 void applyMotionPathTransform(const FloatRect& boundingBox,
4006 float originY,
4007 TransformationMatrix&) const; 4006 TransformationMatrix&) const;
4008 4007
4009 bool diffNeedsFullLayoutAndPaintInvalidation( 4008 bool diffNeedsFullLayoutAndPaintInvalidation(
4010 const ComputedStyle& other) const; 4009 const ComputedStyle& other) const;
4011 bool diffNeedsFullLayout(const ComputedStyle& other) const; 4010 bool diffNeedsFullLayout(const ComputedStyle& other) const;
4012 bool diffNeedsPaintInvalidationSubtree(const ComputedStyle& other) const; 4011 bool diffNeedsPaintInvalidationSubtree(const ComputedStyle& other) const;
4013 bool diffNeedsPaintInvalidationObject(const ComputedStyle& other) const; 4012 bool diffNeedsPaintInvalidationObject(const ComputedStyle& other) const;
4014 bool diffNeedsPaintInvalidationObjectForPaintImage( 4013 bool diffNeedsPaintInvalidationObjectForPaintImage(
4015 const StyleImage*, 4014 const StyleImage*,
4016 const ComputedStyle& other) const; 4015 const ComputedStyle& other) const;
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
4110 m_nonInheritedData.m_pseudoBits |= 1 << (pseudo - 1); 4109 m_nonInheritedData.m_pseudoBits |= 1 << (pseudo - 1);
4111 } 4110 }
4112 4111
4113 inline bool ComputedStyle::hasPseudoElementStyle() const { 4112 inline bool ComputedStyle::hasPseudoElementStyle() const {
4114 return m_nonInheritedData.m_pseudoBits & ElementPseudoIdMask; 4113 return m_nonInheritedData.m_pseudoBits & ElementPseudoIdMask;
4115 } 4114 }
4116 4115
4117 } // namespace blink 4116 } // namespace blink
4118 4117
4119 #endif // ComputedStyle_h 4118 #endif // ComputedStyle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698