| Index: third_party/WebKit/LayoutTests/web-animations-api/startTime.html
|
| diff --git a/third_party/WebKit/LayoutTests/web-animations-api/startTime.html b/third_party/WebKit/LayoutTests/web-animations-api/startTime.html
|
| index 9848af0859ae3f2997d747a8206fb1aaf80c30c2..cd8404166e8d7cbaff79234551ff8f431f16eda0 100644
|
| --- a/third_party/WebKit/LayoutTests/web-animations-api/startTime.html
|
| +++ b/third_party/WebKit/LayoutTests/web-animations-api/startTime.html
|
| @@ -48,8 +48,8 @@ promise_test(function(t) {
|
| test(function() {
|
| var player = document.documentElement.animate([], 100000);
|
| player.cancel();
|
| - assert_unresolved(player.startTime);
|
| - assert_unresolved(player.currentTime);
|
| + assert_equals(player.startTime, null);
|
| + assert_equals(player.currentTime, null);
|
| }, "startTime and currentTime are unresolved when animation is cancelled");
|
|
|
| </script>
|
|
|