| 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 46013f16b9d8ce22c4820ce8070bd4fe1fbe2c28..6f5a408b7707256bdec2ce9f9b17230448b4c2db 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
|
| @@ -5,10 +5,10 @@
|
|
|
| test(function() {
|
| var result = CSSLengthValue.from(5, 'px');
|
| - assert_true(result instanceof SimpleLength);
|
| + assert_true(result instanceof CSSSimpleLength);
|
| assert_equals(result.value, 5);
|
| assert_equals(result.type, 'px');
|
| -}, "Test that CSSLengthValue's static from(double value, LengthType type) method produces a SimpleLength.");
|
| +}, "Test that CSSLengthValue's static from(double value, LengthType type) method produces a CSSSimpleLength.");
|
|
|
| test(function() {
|
| var result = CSSLengthValue.from({px: 1, percent: 2.5});
|
|
|