| Index: third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.html b/third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.html
|
| index f8937a7fa1fa92ea4a29d371078d2181f803d2d9..18e2a88cc7b75f6775e8570230f0e1fc17df021f 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/cssAngleValue.html
|
| @@ -50,10 +50,10 @@ test(function() {
|
| }, 'Test turn conversions');
|
|
|
| test(function() {
|
| - assert_equals((new CSSAngleValue(100, 'deg')).cssString, '100deg');
|
| - assert_equals((new CSSAngleValue(200, 'rad')).cssString, '200rad');
|
| - assert_equals((new CSSAngleValue(300, 'grad')).cssString, '300grad');
|
| - assert_equals((new CSSAngleValue(400, 'turn')).cssString, '400turn');
|
| -}, 'Test cssString');
|
| + assert_equals((new CSSAngleValue(100, 'deg')).cssText, '100deg');
|
| + assert_equals((new CSSAngleValue(200, 'rad')).cssText, '200rad');
|
| + assert_equals((new CSSAngleValue(300, 'grad')).cssText, '300grad');
|
| + assert_equals((new CSSAngleValue(400, 'turn')).cssText, '400turn');
|
| +}, 'Test cssText');
|
|
|
| </script>
|
|
|