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

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

Issue 1710003002: Unprefix multicol properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase master Created 4 years, 10 months 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 case CSSPropertyBackgroundColor: 88 case CSSPropertyBackgroundColor:
89 case CSSPropertyBorderLeftColor: 89 case CSSPropertyBorderLeftColor:
90 case CSSPropertyBorderRightColor: 90 case CSSPropertyBorderRightColor:
91 case CSSPropertyBorderTopColor: 91 case CSSPropertyBorderTopColor:
92 case CSSPropertyBorderBottomColor: 92 case CSSPropertyBorderBottomColor:
93 case CSSPropertyColor: 93 case CSSPropertyColor:
94 case CSSPropertyFill: 94 case CSSPropertyFill:
95 case CSSPropertyOutlineColor: 95 case CSSPropertyOutlineColor:
96 case CSSPropertyStroke: 96 case CSSPropertyStroke:
97 case CSSPropertyTextDecorationColor: 97 case CSSPropertyTextDecorationColor:
98 case CSSPropertyWebkitColumnRuleColor: 98 case CSSPropertyColumnRuleColor:
99 case CSSPropertyWebkitTextEmphasisColor: 99 case CSSPropertyWebkitTextEmphasisColor:
100 case CSSPropertyWebkitTextFillColor: 100 case CSSPropertyWebkitTextFillColor:
101 case CSSPropertyWebkitTextStrokeColor: 101 case CSSPropertyWebkitTextStrokeColor:
102 return true; 102 return true;
103 default: 103 default:
104 return false; 104 return false;
105 } 105 }
106 } 106 }
107 107
108 } // namespace 108 } // namespace
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 return; 836 return;
837 case CSSValueSuper: 837 case CSSValueSuper:
838 svgStyle.setBaselineShift(BS_SUPER); 838 svgStyle.setBaselineShift(BS_SUPER);
839 return; 839 return;
840 default: 840 default:
841 ASSERT_NOT_REACHED(); 841 ASSERT_NOT_REACHED();
842 } 842 }
843 } 843 }
844 844
845 } // namespace blink 845 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698