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 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1538 case CSSPropertyTextOverflow: | 1538 case CSSPropertyTextOverflow: |
1539 case CSSPropertyTextOverlineMode: | 1539 case CSSPropertyTextOverlineMode: |
1540 case CSSPropertyTextOverlineStyle: | 1540 case CSSPropertyTextOverlineStyle: |
1541 case CSSPropertyTextRendering: | 1541 case CSSPropertyTextRendering: |
1542 case CSSPropertyTextTransform: | 1542 case CSSPropertyTextTransform: |
1543 case CSSPropertyTextUnderlineMode: | 1543 case CSSPropertyTextUnderlineMode: |
1544 case CSSPropertyTextUnderlineStyle: | 1544 case CSSPropertyTextUnderlineStyle: |
1545 case CSSPropertyTouchActionDelay: | 1545 case CSSPropertyTouchActionDelay: |
1546 case CSSPropertyVisibility: | 1546 case CSSPropertyVisibility: |
1547 case CSSPropertyWebkitAppearance: | 1547 case CSSPropertyWebkitAppearance: |
| 1548 case CSSPropertyBackfaceVisibility: |
1548 case CSSPropertyWebkitBackfaceVisibility: | 1549 case CSSPropertyWebkitBackfaceVisibility: |
1549 case CSSPropertyWebkitBorderAfterStyle: | 1550 case CSSPropertyWebkitBorderAfterStyle: |
1550 case CSSPropertyWebkitBorderBeforeStyle: | 1551 case CSSPropertyWebkitBorderBeforeStyle: |
1551 case CSSPropertyWebkitBorderEndStyle: | 1552 case CSSPropertyWebkitBorderEndStyle: |
1552 case CSSPropertyWebkitBorderFit: | 1553 case CSSPropertyWebkitBorderFit: |
1553 case CSSPropertyWebkitBorderStartStyle: | 1554 case CSSPropertyWebkitBorderStartStyle: |
1554 case CSSPropertyWebkitBoxAlign: | 1555 case CSSPropertyWebkitBoxAlign: |
1555 case CSSPropertyWebkitBoxDecorationBreak: | 1556 case CSSPropertyWebkitBoxDecorationBreak: |
1556 case CSSPropertyWebkitBoxDirection: | 1557 case CSSPropertyWebkitBoxDirection: |
1557 case CSSPropertyWebkitBoxLines: | 1558 case CSSPropertyWebkitBoxLines: |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1602 // Properties below are validated inside parseViewportProperty, because we | 1603 // Properties below are validated inside parseViewportProperty, because we |
1603 // check for parser state. We need to invalidate if someone adds them outsid
e | 1604 // check for parser state. We need to invalidate if someone adds them outsid
e |
1604 // a @viewport rule. | 1605 // a @viewport rule. |
1605 case CSSPropertyMaxZoom: | 1606 case CSSPropertyMaxZoom: |
1606 case CSSPropertyMinZoom: | 1607 case CSSPropertyMinZoom: |
1607 case CSSPropertyOrientation: | 1608 case CSSPropertyOrientation: |
1608 case CSSPropertyUserZoom: | 1609 case CSSPropertyUserZoom: |
1609 validPrimitive = false; | 1610 validPrimitive = false; |
1610 break; | 1611 break; |
1611 // FIXME: crbug.com/154772 Unimplemented css-transforms properties | 1612 // FIXME: crbug.com/154772 Unimplemented css-transforms properties |
1612 case CSSPropertyBackfaceVisibility: | |
1613 case CSSPropertyPerspective: | 1613 case CSSPropertyPerspective: |
1614 case CSSPropertyPerspectiveOrigin: | 1614 case CSSPropertyPerspectiveOrigin: |
1615 case CSSPropertyTransform: | 1615 case CSSPropertyTransform: |
1616 case CSSPropertyTransformOrigin: | 1616 case CSSPropertyTransformOrigin: |
1617 return false; | 1617 return false; |
1618 default: | 1618 default: |
1619 return parseSVGValue(propId, important); | 1619 return parseSVGValue(propId, important); |
1620 } | 1620 } |
1621 | 1621 |
1622 if (validPrimitive) { | 1622 if (validPrimitive) { |
(...skipping 6617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8240 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill)); | 8240 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill)); |
8241 if (!seenStroke) | 8241 if (!seenStroke) |
8242 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke)
); | 8242 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke)
); |
8243 if (!seenMarkers) | 8243 if (!seenMarkers) |
8244 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers
)); | 8244 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers
)); |
8245 | 8245 |
8246 return parsedValues.release(); | 8246 return parsedValues.release(); |
8247 } | 8247 } |
8248 | 8248 |
8249 } // namespace WebCore | 8249 } // namespace WebCore |
OLD | NEW |