OLD | NEW |
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 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1581 case CSSPropertyWebkitMarginBottomCollapse: | 1581 case CSSPropertyWebkitMarginBottomCollapse: |
1582 case CSSPropertyWebkitMarginTopCollapse: | 1582 case CSSPropertyWebkitMarginTopCollapse: |
1583 case CSSPropertyInternalMarqueeDirection: | 1583 case CSSPropertyInternalMarqueeDirection: |
1584 case CSSPropertyInternalMarqueeStyle: | 1584 case CSSPropertyInternalMarqueeStyle: |
1585 case CSSPropertyWebkitPrintColorAdjust: | 1585 case CSSPropertyWebkitPrintColorAdjust: |
1586 case CSSPropertyWebkitRtlOrdering: | 1586 case CSSPropertyWebkitRtlOrdering: |
1587 case CSSPropertyWebkitRubyPosition: | 1587 case CSSPropertyWebkitRubyPosition: |
1588 case CSSPropertyWebkitTextCombine: | 1588 case CSSPropertyWebkitTextCombine: |
1589 case CSSPropertyWebkitTextEmphasisPosition: | 1589 case CSSPropertyWebkitTextEmphasisPosition: |
1590 case CSSPropertyWebkitTextSecurity: | 1590 case CSSPropertyWebkitTextSecurity: |
| 1591 case CSSPropertyTransformStyle: |
1591 case CSSPropertyWebkitTransformStyle: | 1592 case CSSPropertyWebkitTransformStyle: |
1592 case CSSPropertyWebkitUserDrag: | 1593 case CSSPropertyWebkitUserDrag: |
1593 case CSSPropertyWebkitUserModify: | 1594 case CSSPropertyWebkitUserModify: |
1594 case CSSPropertyWebkitUserSelect: | 1595 case CSSPropertyWebkitUserSelect: |
1595 case CSSPropertyWebkitWrapFlow: | 1596 case CSSPropertyWebkitWrapFlow: |
1596 case CSSPropertyWebkitWrapThrough: | 1597 case CSSPropertyWebkitWrapThrough: |
1597 case CSSPropertyWebkitWritingMode: | 1598 case CSSPropertyWebkitWritingMode: |
1598 case CSSPropertyWhiteSpace: | 1599 case CSSPropertyWhiteSpace: |
1599 case CSSPropertyWordBreak: | 1600 case CSSPropertyWordBreak: |
1600 case CSSPropertyWordWrap: | 1601 case CSSPropertyWordWrap: |
(...skipping 6636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8237 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill)); | 8238 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill)); |
8238 if (!seenStroke) | 8239 if (!seenStroke) |
8239 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke)
); | 8240 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke)
); |
8240 if (!seenMarkers) | 8241 if (!seenMarkers) |
8241 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers
)); | 8242 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers
)); |
8242 | 8243 |
8243 return parsedValues.release(); | 8244 return parsedValues.release(); |
8244 } | 8245 } |
8245 | 8246 |
8246 } // namespace WebCore | 8247 } // namespace WebCore |
OLD | NEW |