| Index: third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html b/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
|
| index 1b3754bf1e5ec6851470d2d5b29023569fb287ee..2c1b2e8193575b1ada43d717a98563f2b9134a1a 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
|
| @@ -7,10 +7,10 @@ test(function() {
|
| var result = StyleValue.parse('width', '10px');
|
|
|
| assert_not_equals(result, null);
|
| - assert_true(result instanceof SimpleLength);
|
| + assert_true(result instanceof CSSSimpleLength);
|
| assert_equals(result.value, 10);
|
| assert_equals(result.type, 'px');
|
| -}, 'Parsing 10px results in a SimpleLength');
|
| +}, 'Parsing 10px results in a CSSSimpleLength');
|
|
|
| test(function() {
|
| assert_equals(StyleValue.parse('width', 'hello'), null);
|
|
|