OLD | NEW |
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 1089 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1100 case CSSPropertySpeak: | 1100 case CSSPropertySpeak: |
1101 case CSSPropertyTabSize: | 1101 case CSSPropertyTabSize: |
1102 case CSSPropertyTableLayout: | 1102 case CSSPropertyTableLayout: |
1103 case CSSPropertyTextAlign: | 1103 case CSSPropertyTextAlign: |
1104 case CSSPropertyTextAlignLast: | 1104 case CSSPropertyTextAlignLast: |
1105 case CSSPropertyTextDecoration: | 1105 case CSSPropertyTextDecoration: |
1106 case CSSPropertyTextDecorationLine: | 1106 case CSSPropertyTextDecorationLine: |
1107 case CSSPropertyTextDecorationStyle: | 1107 case CSSPropertyTextDecorationStyle: |
1108 case CSSPropertyTextDecorationColor: | 1108 case CSSPropertyTextDecorationColor: |
1109 case CSSPropertyTextIndent: | 1109 case CSSPropertyTextIndent: |
| 1110 case CSSPropertyTextJustify: |
1110 case CSSPropertyTextOverflow: | 1111 case CSSPropertyTextOverflow: |
1111 case CSSPropertyTextRendering: | 1112 case CSSPropertyTextRendering: |
1112 case CSSPropertyTextTransform: | 1113 case CSSPropertyTextTransform: |
1113 case CSSPropertyTop: | 1114 case CSSPropertyTop: |
1114 case CSSPropertyTouchAction: | 1115 case CSSPropertyTouchAction: |
1115 case CSSPropertyUnicodeBidi: | 1116 case CSSPropertyUnicodeBidi: |
1116 case CSSPropertyVariable: | 1117 case CSSPropertyVariable: |
1117 case CSSPropertyVerticalAlign: | 1118 case CSSPropertyVerticalAlign: |
1118 case CSSPropertyVisibility: | 1119 case CSSPropertyVisibility: |
1119 case CSSPropertyWebkitAnimationDelay: | 1120 case CSSPropertyWebkitAnimationDelay: |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1632 case CSSPropertyMaskType: { | 1633 case CSSPropertyMaskType: { |
1633 HANDLE_SVG_INHERIT_AND_INITIAL(maskType, MaskType) | 1634 HANDLE_SVG_INHERIT_AND_INITIAL(maskType, MaskType) |
1634 if (primitiveValue) | 1635 if (primitiveValue) |
1635 state.style()->accessSVGStyle()->setMaskType(*primitiveValue); | 1636 state.style()->accessSVGStyle()->setMaskType(*primitiveValue); |
1636 break; | 1637 break; |
1637 } | 1638 } |
1638 } | 1639 } |
1639 } | 1640 } |
1640 | 1641 |
1641 } // namespace WebCore | 1642 } // namespace WebCore |
OLD | NEW |