| Index: third_party/WebKit/LayoutTests/animations/function-easing-use-counters-other2.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/function-easing-use-counters-other2.html b/third_party/WebKit/LayoutTests/animations/function-easing-use-counters-other2.html
|
| index 8cac23d20cfb55bf864369adf5c9da1b802641fd..b02fd1eeba92b738d9e99d1ecdf0f76b904d9884 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/function-easing-use-counters-other2.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/function-easing-use-counters-other2.html
|
| @@ -8,7 +8,9 @@ var WebAnimationsEasingAsFunctionLinear = 1295;
|
| var WebAnimationsEasingAsFunctionOther = 1296;
|
|
|
| test(() => {
|
| - document.documentElement.animate([], { easing: 'function(x, y){return 0.3}' });
|
| + assert_throws(
|
| + {name: 'TypeError'},
|
| + function() { document.documentElement.animate([], { easing: 'function(x, y){return 0.3}' }) });
|
| assert_false(internals.isUseCounted(document, WebAnimationsEasingAsFunctionLinear));
|
| assert_true(internals.isUseCounted(document, WebAnimationsEasingAsFunctionOther));
|
| }, 'Arbitrary functions for easing are counted in WebAnimationsEasingAsFunctionOther.');
|
|
|