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

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

Issue 1439793003: SVG: Promote d to a property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: RefPtrWillBePersistent Created 5 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 svgStyle.setBaselineShift(BS_SUB); 862 svgStyle.setBaselineShift(BS_SUB);
863 return; 863 return;
864 case CSSValueSuper: 864 case CSSValueSuper:
865 svgStyle.setBaselineShift(BS_SUPER); 865 svgStyle.setBaselineShift(BS_SUPER);
866 return; 866 return;
867 default: 867 default:
868 ASSERT_NOT_REACHED(); 868 ASSERT_NOT_REACHED();
869 } 869 }
870 } 870 }
871 871
872 void StyleBuilderFunctions::applyInitialCSSPropertyD(StyleResolverState& state)
873 {
874 state.style()->accessSVGStyle().setD(SVGComputedStyle::initialD());
875 }
876
877 void StyleBuilderFunctions::applyInheritCSSPropertyD(StyleResolverState& state)
878 {
879 state.style()->accessSVGStyle().setD(state.parentStyle()->svgStyle().d());
880 }
881
882 void StyleBuilderFunctions::applyValueCSSPropertyD(StyleResolverState& state, CS SValue* value)
883 {
884 state.style()->accessSVGStyle().setD(toCSSPathValue(value));
885 }
886
872 } // namespace blink 887 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698