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

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: rebase 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 3988 matching lines...) Expand 10 before | Expand all | Expand 10 after
3999 StyleColor decorationColorIncludingFallback(bool visitedLink) const; 3999 StyleColor decorationColorIncludingFallback(bool visitedLink) const;
4000 Color colorIncludingFallback(int colorProperty, bool visitedLink) const; 4000 Color colorIncludingFallback(int colorProperty, bool visitedLink) const;
4001 4001
4002 Color stopColor() const { return svgStyle().stopColor(); } 4002 Color stopColor() const { return svgStyle().stopColor(); }
4003 Color floodColor() const { return svgStyle().floodColor(); } 4003 Color floodColor() const { return svgStyle().floodColor(); }
4004 Color lightingColor() const { return svgStyle().lightingColor(); } 4004 Color lightingColor() const { return svgStyle().lightingColor(); }
4005 4005
4006 void addAppliedTextDecoration(const AppliedTextDecoration&); 4006 void addAppliedTextDecoration(const AppliedTextDecoration&);
4007 void applyMotionPathTransform(float originX, 4007 void applyMotionPathTransform(float originX,
4008 float originY, 4008 float originY,
4009 const FloatRect& boundingBox,
4009 TransformationMatrix&) const; 4010 TransformationMatrix&) const;
4010 4011
4011 bool scrollAnchorDisablingPropertyChanged(const ComputedStyle& other, 4012 bool scrollAnchorDisablingPropertyChanged(const ComputedStyle& other,
4012 StyleDifference&) const; 4013 StyleDifference&) const;
4013 bool diffNeedsFullLayoutAndPaintInvalidation( 4014 bool diffNeedsFullLayoutAndPaintInvalidation(
4014 const ComputedStyle& other) const; 4015 const ComputedStyle& other) const;
4015 bool diffNeedsFullLayout(const ComputedStyle& other) const; 4016 bool diffNeedsFullLayout(const ComputedStyle& other) const;
4016 bool diffNeedsPaintInvalidationSubtree(const ComputedStyle& other) const; 4017 bool diffNeedsPaintInvalidationSubtree(const ComputedStyle& other) const;
4017 bool diffNeedsPaintInvalidationObject(const ComputedStyle& other) const; 4018 bool diffNeedsPaintInvalidationObject(const ComputedStyle& other) const;
4018 bool diffNeedsPaintInvalidationObjectForPaintImage( 4019 bool diffNeedsPaintInvalidationObjectForPaintImage(
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
4114 m_nonInheritedData.m_pseudoBits |= 1 << (pseudo - 1); 4115 m_nonInheritedData.m_pseudoBits |= 1 << (pseudo - 1);
4115 } 4116 }
4116 4117
4117 inline bool ComputedStyle::hasPseudoElementStyle() const { 4118 inline bool ComputedStyle::hasPseudoElementStyle() const {
4118 return m_nonInheritedData.m_pseudoBits & ElementPseudoIdMask; 4119 return m_nonInheritedData.m_pseudoBits & ElementPseudoIdMask;
4119 } 4120 }
4120 4121
4121 } // namespace blink 4122 } // namespace blink
4122 4123
4123 #endif // ComputedStyle_h 4124 #endif // ComputedStyle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698