| Index: third_party/WebKit/LayoutTests/animations/usecounter-tests/function-easing-use-counters-other1.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/usecounter-tests/function-easing-use-counters-other1.html b/third_party/WebKit/LayoutTests/animations/usecounter-tests/function-easing-use-counters-other1.html
|
| deleted file mode 100644
|
| index fc932b0d08fd519682631f9d39869161f073c718..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/animations/usecounter-tests/function-easing-use-counters-other1.html
|
| +++ /dev/null
|
| @@ -1,17 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<script>
|
| -'use strict';
|
| -// From UseCounter.h
|
| -var WebAnimationsEasingAsFunctionLinear = 1295;
|
| -var WebAnimationsEasingAsFunctionOther = 1296;
|
| -
|
| -test(() => {
|
| - assert_throws(
|
| - {name: 'TypeError'},
|
| - function() { document.documentElement.animate([], { easing: 'function (x){return x}' }) });
|
| - assert_false(internals.isUseCounted(document, WebAnimationsEasingAsFunctionLinear));
|
| - assert_true(internals.isUseCounted(document, WebAnimationsEasingAsFunctionOther));
|
| -}, 'Any linear function for easing other than "function (a){return a}" is counted in WebAnimationsEasingAsFunctionOther.');
|
| -</script>
|
|
|