| 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 97b7e56a77492671cec54865627e73d2bd499090..178f3f3c6539ee8f615d6655011beeb3172e1c9f 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/border-top-width.html
|
| @@ -13,7 +13,7 @@ test(function() {
|
|
|
| var result = computedStyleMap.get('border-top-width');
|
| assert_true(result instanceof CSSSimpleLength);
|
| - assert_equals(result.cssString, '10px');
|
| + assert_equals(result.cssText, '10px');
|
| }, "Getting a 10px border-top-width returns a CSSSimpleLength");
|
|
|
| test(function() {
|
| @@ -21,7 +21,7 @@ test(function() {
|
|
|
| var result = computedStyleMap.getAll('border-top-width');
|
| assert_equals(result.length, 1);
|
| - assert_equals(result[0].cssString, '20px');
|
| + assert_equals(result[0].cssText, '20px');
|
| }, "getAll for border-top-width returns a single value");
|
|
|
| </script>
|
|
|