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

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

Issue 17155007: [CSS3] Parsing the property, text-justify. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parsingTextJustify
Patch Set: Created 7 years, 5 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 2011 matching lines...) Expand 10 before | Expand all | Expand 10 after
2022 case CSSPropertySpeak: 2022 case CSSPropertySpeak:
2023 case CSSPropertyTabSize: 2023 case CSSPropertyTabSize:
2024 case CSSPropertyTableLayout: 2024 case CSSPropertyTableLayout:
2025 case CSSPropertyTextAlign: 2025 case CSSPropertyTextAlign:
2026 case CSSPropertyTextAlignLast: 2026 case CSSPropertyTextAlignLast:
2027 case CSSPropertyTextDecoration: 2027 case CSSPropertyTextDecoration:
2028 case CSSPropertyTextDecorationLine: 2028 case CSSPropertyTextDecorationLine:
2029 case CSSPropertyTextDecorationStyle: 2029 case CSSPropertyTextDecorationStyle:
2030 case CSSPropertyTextDecorationColor: 2030 case CSSPropertyTextDecorationColor:
2031 case CSSPropertyTextIndent: 2031 case CSSPropertyTextIndent:
2032 case CSSPropertyTextJustify:
2032 case CSSPropertyTextOverflow: 2033 case CSSPropertyTextOverflow:
2033 case CSSPropertyTextRendering: 2034 case CSSPropertyTextRendering:
2034 case CSSPropertyTextTransform: 2035 case CSSPropertyTextTransform:
2035 case CSSPropertyTop: 2036 case CSSPropertyTop:
2036 case CSSPropertyTouchAction: 2037 case CSSPropertyTouchAction:
2037 case CSSPropertyUnicodeBidi: 2038 case CSSPropertyUnicodeBidi:
2038 case CSSPropertyVariable: 2039 case CSSPropertyVariable:
2039 case CSSPropertyVerticalAlign: 2040 case CSSPropertyVerticalAlign:
2040 case CSSPropertyVisibility: 2041 case CSSPropertyVisibility:
2041 case CSSPropertyWebkitAnimationDelay: 2042 case CSSPropertyWebkitAnimationDelay:
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
2554 case CSSPropertyMaskType: { 2555 case CSSPropertyMaskType: {
2555 HANDLE_SVG_INHERIT_AND_INITIAL(maskType, MaskType) 2556 HANDLE_SVG_INHERIT_AND_INITIAL(maskType, MaskType)
2556 if (primitiveValue) 2557 if (primitiveValue)
2557 state.style()->accessSVGStyle()->setMaskType(*primitiveValue); 2558 state.style()->accessSVGStyle()->setMaskType(*primitiveValue);
2558 break; 2559 break;
2559 } 2560 }
2560 } 2561 }
2561 } 2562 }
2562 2563
2563 } // namespace WebCore 2564 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698