| Index: third_party/WebKit/LayoutTests/typedcssom/cssPositionValue.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssPositionValue.html b/third_party/WebKit/LayoutTests/typedcssom/cssPositionValue.html
|
| index 0e9d416d5f16aa7720b4e6290ac09d0b7f8cb1f1..12c84599ed24d9f9d229960f1eba972fa51e0f30 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/cssPositionValue.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/cssPositionValue.html
|
| @@ -6,12 +6,12 @@
|
|
|
| test(function() {
|
| assert_equals(new CSSPositionValue(new CSSSimpleLength(50, 'px'),
|
| - new CalcLength({px: -10, em: -3.2, pt: 0})).cssString, '50px calc((-3.2em - 10px) + 0pt)');
|
| + new CSSCalcLength({px: -10, em: -3.2, pt: 0})).cssString, '50px calc((-3.2em - 10px) + 0pt)');
|
| assert_equals(new CSSPositionValue(new CSSSimpleLength(50, 'px'),
|
| new CSSSimpleLength(2, 'em')).cssString, '50px 2em');
|
| - assert_equals(new CSSPositionValue(new CalcLength({px: -10, em: -3.2, pt: 0}),
|
| - new CalcLength({px: -10, em: 3.2})).cssString, 'calc((-3.2em - 10px) + 0pt) calc(3.2em - 10px)');
|
| - assert_equals(new CSSPositionValue(new CalcLength({px: -10, em: -3.2, pt: 0}),
|
| + assert_equals(new CSSPositionValue(new CSSCalcLength({px: -10, em: -3.2, pt: 0}),
|
| + new CSSCalcLength({px: -10, em: 3.2})).cssString, 'calc((-3.2em - 10px) + 0pt) calc(3.2em - 10px)');
|
| + assert_equals(new CSSPositionValue(new CSSCalcLength({px: -10, em: -3.2, pt: 0}),
|
| new CSSSimpleLength(10, 'percent')).cssString, 'calc((-3.2em - 10px) + 0pt) 10%');
|
| }, "cssString returns a string with the x and y positions cssStrings separated by a space");
|
|
|
|
|