Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: Source/core/css/resolver/TransformBuilder.cpp

Issue 641643004: Reapply the non-MathExtras parts of (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/css/parser/CSSPropertyParser.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/css/parser/CSSPropertyParser.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698