Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(477)

Unified Diff: LayoutTests/animations/svg-attribute-interpolation/svg-filterRes-interpolation.html

Issue 1153403003: Remove SVGFilterElement's filterRes* attributes and setFilterRes() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase + updated smallFonts.svg and textFeatures.svg Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/animations/svg-attribute-interpolation/svg-filterRes-interpolation.html
diff --git a/LayoutTests/animations/svg-attribute-interpolation/svg-filterRes-interpolation.html b/LayoutTests/animations/svg-attribute-interpolation/svg-filterRes-interpolation.html
deleted file mode 100644
index add68e3dc3e6628b43aa421c9bdfdf1c2bd76ef3..0000000000000000000000000000000000000000
--- a/LayoutTests/animations/svg-attribute-interpolation/svg-filterRes-interpolation.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<template id="target-template">
-<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90">
-<defs>
-<filter filterUnits="userSpaceOnUse" x="0" y="0" width="10" height="10" class="target" />
-</defs>
-</svg>
-</template>
-<script src="resources/interpolation-test.js"></script>
-<script>
-'use strict';
-assertAttributeInterpolation({
- property: 'filterRes',
- from: '1',
- to: '6 11'
-}, [
- {at: -0.4, is: '0, 0'},
- {at: 0, is: '1, 1'},
- {at: 0.2, is: '2, 3'},
- {at: 0.6, is: '4, 7'},
- {at: 1, is: '6, 11'},
- {at: 1.4, is: '8, 15'}
-]);
-assertAttributeInterpolation({
- property: 'filterRes',
- from: '5',
- to: '5 0'
-}, [
- {at: -0.4, is: '5, 7'},
- {at: 0, is: '5, 5'},
- {at: 0.2, is: '5, 4'},
- {at: 0.6, is: '5, 2'},
- {at: 1, is: '5, 0'},
- {at: 1.4, is: '5, 0'}
-]);
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698