| Index: third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
|
| index c8882f4dee433889b0b8e77793635abe92e68f4e..9e55e1d04d0bc3044f447eeb17bf425eff64fed4 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
|
| @@ -12,9 +12,9 @@ test(function() {
|
| testElement.style.borderTop = '10px solid #000';
|
|
|
| var result = computedStyleMap.get('border-top-width');
|
| - assert_equals(result.constructor.name, CSSSimpleLength.name);
|
| + assert_equals(result.constructor.name, CSSUnitValue.name);
|
| assert_equals(result.cssText, '10px');
|
| -}, "Getting a 10px border-top-width returns a CSSSimpleLength");
|
| +}, "Getting a 10px border-top-width returns a CSSUnitValue");
|
|
|
| test(function() {
|
| testElement.style.borderTop = '20px solid #000';
|
|
|