| Index: third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html b/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
|
| index 6f5a408b7707256bdec2ce9f9b17230448b4c2db..eda875869192b5f7d58d92455021cee4e03ccf6f 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
|
| @@ -12,10 +12,10 @@ test(function() {
|
|
|
| test(function() {
|
| var result = CSSLengthValue.from({px: 1, percent: 2.5});
|
| - assert_true(result instanceof CalcLength);
|
| + assert_true(result instanceof CSSCalcLength);
|
| assert_equals(result.px, 1);
|
| assert_equals(result.percent, 2.5);
|
| -}, "Test that CSSLengthValue's static from(CalcDictionary dictionary) method produces a CalcLength.");
|
| +}, "Test that CSSLengthValue's static from(CalcDictionary dictionary) method produces a CSSCalcLength.");
|
|
|
| </script>
|
| <body>
|
|
|