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

Side by Side Diff: third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.cpp

Issue 2047923002: [WIP] Add support for CSSValue-> CSSLengthValue and CSSTranslation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@supported-types
Patch Set: Created 4 years, 6 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/css/cssom/CSSSimpleLength.h" 5 #include "core/css/cssom/CSSSimpleLength.h"
6 6
7 #include "core/css/CSSPrimitiveValue.h" 7 #include "core/css/CSSPrimitiveValue.h"
8 #include "core/css/cssom/CSSCalcLength.h" 8 #include "core/css/cssom/CSSCalcLength.h"
9 #include "wtf/text/StringBuilder.h" 9 #include "wtf/text/StringBuilder.h"
10 10
(...skipping 24 matching lines...) Expand all
35 { 35 {
36 const CSSSimpleLength* o = toCSSSimpleLength(other); 36 const CSSSimpleLength* o = toCSSSimpleLength(other);
37 if (m_unit == o->m_unit) 37 if (m_unit == o->m_unit)
38 return create(m_value - o->value(), m_unit); 38 return create(m_value - o->value(), m_unit);
39 39
40 // Different units resolve to a calc. 40 // Different units resolve to a calc.
41 CSSCalcLength* result = CSSCalcLength::create(this, exceptionState); 41 CSSCalcLength* result = CSSCalcLength::create(this, exceptionState);
42 return result->subtract(other, exceptionState); 42 return result->subtract(other, exceptionState);
43 } 43 }
44 44
45 CSSLengthValue* CSSSimpleLength::multiplyInternal(double x, ExceptionState& exce ptionState) 45 CSSLengthValue* CSSSimpleLength::multiplyInternal(double x)
46 { 46 {
47 return create(m_value * x, m_unit); 47 return create(m_value * x, m_unit);
48 } 48 }
49 49
50 CSSLengthValue* CSSSimpleLength::divideInternal(double x, ExceptionState& except ionState) 50 CSSLengthValue* CSSSimpleLength::divideInternal(double x)
51 { 51 {
52 return create(m_value / x, m_unit); 52 return create(m_value / x, m_unit);
53 } 53 }
54 54
55 } // namespace blink 55 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSTranslation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698