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, 2013 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 } | 294 } |
295 case CSSTransformValue::PerspectiveTransformOperation: { | 295 case CSSTransformValue::PerspectiveTransformOperation: { |
296 double p; | 296 double p; |
297 if (firstValue->isLength()) | 297 if (firstValue->isLength()) |
298 p = firstValue->computeLength<double>(conversionData); | 298 p = firstValue->computeLength<double>(conversionData); |
299 else { | 299 else { |
300 // This is a quirk that should go away when 3d transforms are fi
nalized. | 300 // This is a quirk that should go away when 3d transforms are fi
nalized. |
301 double val = firstValue->getDoubleValue(); | 301 double val = firstValue->getDoubleValue(); |
302 if (val < 0) | 302 if (val < 0) |
303 return false; | 303 return false; |
304 p = clampToPositiveInteger(val); | 304 p = clampTo<int>(val, 0); |
305 } | 305 } |
306 | 306 |
307 operations.operations().append(PerspectiveTransformOperation::create
(p)); | 307 operations.operations().append(PerspectiveTransformOperation::create
(p)); |
308 break; | 308 break; |
309 } | 309 } |
310 case CSSTransformValue::UnknownTransformOperation: | 310 case CSSTransformValue::UnknownTransformOperation: |
311 ASSERT_NOT_REACHED(); | 311 ASSERT_NOT_REACHED(); |
312 break; | 312 break; |
313 } | 313 } |
314 } | 314 } |
315 | 315 |
316 outOperations = operations; | 316 outOperations = operations; |
317 return true; | 317 return true; |
318 } | 318 } |
319 | 319 |
320 } // namespace blink | 320 } // namespace blink |
OLD | NEW |