| Index: third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html b/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
|
| index c62d2ff10e0382f1e0bdaff81f61a23cb15f27b0..d6c056f1c6deae0f66524db16ebd04d3d9dd00df 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
|
| @@ -7,11 +7,11 @@
|
| var simpleLength = new CSSSimpleLength(0, "px");
|
| var decimalLength = new CSSSimpleLength(1.1, "px");
|
| var negativeLength = new CSSSimpleLength(-2.2, "em");
|
| -var calcLengthPx = new CalcLength({px: 1});
|
| -var calcLength = new CalcLength({px: 1, em: -2.2});
|
| +var calcLengthPx = new CSSCalcLength({px: 1});
|
| +var calcLength = new CSSCalcLength({px: 1, em: -2.2});
|
|
|
| var simplePercent = new CSSSimpleLength(10, "percent");
|
| -var calcPercent = new CalcLength({px: 1, percent: 2.2});
|
| +var calcPercent = new CSSCalcLength({px: 1, percent: 2.2});
|
|
|
| var values = [
|
| // 2D CSSTranslation Transform Components
|
|
|