| Index: third_party/WebKit/LayoutTests/typedcssom/computedstyle/width.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/width.html b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/width.html
|
| index a9a7561dacb4e94c08c665fe6131b74d48f833da..9d6a087fce5337982ad7aecbd3b4ca6f35adaa10 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/computedstyle/width.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/computedstyle/width.html
|
| @@ -11,11 +11,11 @@
|
|
|
| testElement.style.width = '10px';
|
|
|
| -var t1 = async_test("Getting a 10px width results in a CSSSimpleLength");
|
| +var t1 = async_test("Getting a 10px width results in a CSSUnitValue");
|
| function t1Callback(computedStyleMap) {
|
| t1.step(function() {
|
| var result = computedStyleMap.get('width');
|
| - assert_equals(result.constructor.name, CSSSimpleLength.name);
|
| + assert_equals(result.constructor.name, CSSUnitValue.name);
|
| assert_equals(result.cssText, '10px');
|
| });
|
| t1.done();
|
|
|