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

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

Issue 1439793003: SVG: Promote d to a property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DECLARE_VIRTUAL_TRACE 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) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
9 * Copyright (C) 2012 Intel Corporation. All rights reserved. 9 * Copyright (C) 2012 Intel Corporation. All rights reserved.
10 * 10 *
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
869 case CSSPropertyMarker: 869 case CSSPropertyMarker:
870 case CSSPropertyMarkerStart: 870 case CSSPropertyMarkerStart:
871 case CSSPropertyMarkerMid: 871 case CSSPropertyMarkerMid:
872 case CSSPropertyMarkerEnd: 872 case CSSPropertyMarkerEnd:
873 case CSSPropertyFlex: 873 case CSSPropertyFlex:
874 case CSSPropertyFlexBasis: 874 case CSSPropertyFlexBasis:
875 case CSSPropertyFlexGrow: 875 case CSSPropertyFlexGrow:
876 case CSSPropertyFlexShrink: 876 case CSSPropertyFlexShrink:
877 case CSSPropertyFlexFlow: 877 case CSSPropertyFlexFlow:
878 case CSSPropertyStrokeDasharray: 878 case CSSPropertyStrokeDasharray:
879 case CSSPropertyD:
879 case CSSPropertyWebkitColumnRule: 880 case CSSPropertyWebkitColumnRule:
880 case CSSPropertyWebkitColumnRuleColor: 881 case CSSPropertyWebkitColumnRuleColor:
881 case CSSPropertyWebkitColumnRuleWidth: 882 case CSSPropertyWebkitColumnRuleWidth:
882 case CSSPropertyClipPath: 883 case CSSPropertyClipPath:
883 case CSSPropertyFilter: 884 case CSSPropertyFilter:
884 case CSSPropertyMask: 885 case CSSPropertyMask:
885 case CSSPropertyStrokeOpacity: 886 case CSSPropertyStrokeOpacity:
886 case CSSPropertyFillOpacity: 887 case CSSPropertyFillOpacity:
887 case CSSPropertyStopOpacity: 888 case CSSPropertyStopOpacity:
888 case CSSPropertyFloodOpacity: 889 case CSSPropertyFloodOpacity:
(...skipping 4037 matching lines...) Expand 10 before | Expand all | Expand 10 after
4926 ASSERT(!m_parsedCalculation); 4927 ASSERT(!m_parsedCalculation);
4927 m_parsedCalculation = CSSCalcValue::create(args, range); 4928 m_parsedCalculation = CSSCalcValue::create(args, range);
4928 4929
4929 if (!m_parsedCalculation) 4930 if (!m_parsedCalculation)
4930 return false; 4931 return false;
4931 4932
4932 return true; 4933 return true;
4933 } 4934 }
4934 4935
4935 } // namespace blink 4936 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698