| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "core/css/CSSCalculationValue.h" | 31 #include "core/css/CSSCalculationValue.h" |
| 32 | 32 |
| 33 #include "core/css/CSSPrimitiveValue.h" | 33 #include "core/css/CSSPrimitiveValue.h" |
| 34 #include "core/css/CSSToLengthConversionData.h" | 34 #include "core/css/CSSToLengthConversionData.h" |
| 35 #include "core/css/StylePropertySet.h" | 35 #include "core/css/StylePropertySet.h" |
| 36 #include "core/layout/api/LayoutViewItem.h" | 36 #include "core/layout/api/LayoutViewItem.h" |
| 37 #include "core/style/ComputedStyle.h" | 37 #include "core/style/ComputedStyle.h" |
| 38 #include "core/style/StyleInheritedData.h" | |
| 39 #include "testing/gtest/include/gtest/gtest.h" | 38 #include "testing/gtest/include/gtest/gtest.h" |
| 40 | 39 |
| 41 namespace blink { | 40 namespace blink { |
| 42 | 41 |
| 43 void PrintTo(const CSSLengthArray& length_array, ::std::ostream* os) { | 42 void PrintTo(const CSSLengthArray& length_array, ::std::ostream* os) { |
| 44 for (double x : length_array.values) | 43 for (double x : length_array.values) |
| 45 *os << x << ' '; | 44 *os << x << ' '; |
| 46 } | 45 } |
| 47 | 46 |
| 48 namespace { | 47 namespace { |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 expectation.values.at(CSSPrimitiveValue::kUnitTypePercentage) = -40; | 215 expectation.values.at(CSSPrimitiveValue::kUnitTypePercentage) = -40; |
| 217 EXPECT_TRUE(LengthArraysEqual( | 216 EXPECT_TRUE(LengthArraysEqual( |
| 218 expectation, | 217 expectation, |
| 219 SetLengthArray( | 218 SetLengthArray( |
| 220 actual, "calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px)"))); | 219 actual, "calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px)"))); |
| 221 } | 220 } |
| 222 | 221 |
| 223 } // anonymous namespace | 222 } // anonymous namespace |
| 224 | 223 |
| 225 } // namespace blink | 224 } // namespace blink |
| OLD | NEW |