OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r
ights reserved. |
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 case CSSValueStepEnd: | 512 case CSSValueStepEnd: |
513 animation->setTimingFunction(StepsTimingFunction::preset(StepsTiming
Function::End)); | 513 animation->setTimingFunction(StepsTimingFunction::preset(StepsTiming
Function::End)); |
514 break; | 514 break; |
515 default: | 515 default: |
516 break; | 516 break; |
517 } | 517 } |
518 return; | 518 return; |
519 } | 519 } |
520 | 520 |
521 if (value->isCubicBezierTimingFunctionValue()) { | 521 if (value->isCubicBezierTimingFunctionValue()) { |
522 CSSCubicBezierTimingFunctionValue* cubicTimingFunction = static_cast<CSS
CubicBezierTimingFunctionValue*>(value); | 522 CSSCubicBezierTimingFunctionValue* cubicTimingFunction = toCSSCubicBezie
rTimingFunctionValue(value); |
523 animation->setTimingFunction(CubicBezierTimingFunction::create(cubicTimi
ngFunction->x1(), cubicTimingFunction->y1(), cubicTimingFunction->x2(), cubicTim
ingFunction->y2())); | 523 animation->setTimingFunction(CubicBezierTimingFunction::create(cubicTimi
ngFunction->x1(), cubicTimingFunction->y1(), cubicTimingFunction->x2(), cubicTim
ingFunction->y2())); |
524 } else if (value->isStepsTimingFunctionValue()) { | 524 } else if (value->isStepsTimingFunctionValue()) { |
525 CSSStepsTimingFunctionValue* stepsTimingFunction = static_cast<CSSStepsT
imingFunctionValue*>(value); | 525 CSSStepsTimingFunctionValue* stepsTimingFunction = toCSSStepsTimingFunct
ionValue(value); |
526 animation->setTimingFunction(StepsTimingFunction::create(stepsTimingFunc
tion->numberOfSteps(), stepsTimingFunction->stepAtStart())); | 526 animation->setTimingFunction(StepsTimingFunction::create(stepsTimingFunc
tion->numberOfSteps(), stepsTimingFunction->stepAtStart())); |
527 } | 527 } |
528 } | 528 } |
529 | 529 |
530 void CSSToStyleMap::mapNinePieceImage(RenderStyle* mutableStyle, CSSPropertyID p
roperty, CSSValue* value, NinePieceImage& image) | 530 void CSSToStyleMap::mapNinePieceImage(RenderStyle* mutableStyle, CSSPropertyID p
roperty, CSSValue* value, NinePieceImage& image) |
531 { | 531 { |
532 // If we're not a value list, then we are "none" and don't need to alter the
empty image at all. | 532 // If we're not a value list, then we are "none" and don't need to alter the
empty image at all. |
533 if (!value || !value->isValueList()) | 533 if (!value || !value->isValueList()) |
534 return; | 534 return; |
535 | 535 |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 verticalRule = SpaceImageRule; | 706 verticalRule = SpaceImageRule; |
707 break; | 707 break; |
708 default: // CSSValueRepeat | 708 default: // CSSValueRepeat |
709 verticalRule = RepeatImageRule; | 709 verticalRule = RepeatImageRule; |
710 break; | 710 break; |
711 } | 711 } |
712 image.setVerticalRule(verticalRule); | 712 image.setVerticalRule(verticalRule); |
713 } | 713 } |
714 | 714 |
715 }; | 715 }; |
OLD | NEW |