Index: third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-tableValues-responsive.html |
diff --git a/third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-tableValues-responsive.html b/third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-tableValues-responsive.html |
deleted file mode 100644 |
index 7d217d62454ae711d00223ccbcf9f481d6427d74..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-tableValues-responsive.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<!DOCTYPE html> |
-<script src="../responsive/resources/responsive-test.js"></script> |
-<script> |
-assertSVGResponsive({ |
- targetTag: 'feFuncG', |
- property: 'tableValues', |
- getter(target) { |
- return Array.from(target.tableValues.animVal).map(number => number.value).join(', '); |
- }, |
- from: neutralKeyframe, |
- to: '10, 20', |
- configurations: [{ |
- state: {underlying: '50, 60'}, |
- expect: [ |
- {at: 0.25, is: '40, 50'}, |
- {at: 0.75, is: '20, 30'}, |
- ], |
- }, { |
- state: {underlying: '50, 60, 80'}, |
- expect: [ |
- {at: 0.25, is: '50, 60, 80'}, |
- {at: 0.75, is: '10, 20'}, |
- ], |
- }], |
-}); |
-</script> |