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

Unified Diff: LayoutTests/animations/interpolation/non-animatable-interpolation.html

Issue 1217983003: Allow animation of non-interpolable properties in CSS Animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 6 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/interpolation/non-animatable-interpolation.html
diff --git a/LayoutTests/animations/interpolation/non-animatable-interpolation.html b/LayoutTests/animations/interpolation/non-animatable-interpolation.html
deleted file mode 100644
index f20ef62b23d89ac69be0467dbf8da53e96d96510..0000000000000000000000000000000000000000
--- a/LayoutTests/animations/interpolation/non-animatable-interpolation.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<meta charset="UTF-8">
-<style>
-.expected { color: green; }
-</style>
-<body>
-<script src="resources/interpolation-test.js"></script>
-<template id="target-template">float</template>
-<script>
-assertInterpolation({
- method: 'CSS Animations',
- property: 'float',
- from: 'left',
- to: 'right'
-}, [
- {at: -0.3, is: 'none'},
- {at: 0, is: 'none'},
- {at: 0.3, is: 'none'},
- {at: 0.6, is: 'none'},
- {at: 1, is: 'none'},
- {at: 1.5, is: 'none'},
-]);
-assertInterpolation({
- method: 'CSS Transitions',
- property: 'float',
- from: 'left',
- to: 'right'
-}, [
- {at: -0.3, is: 'right'},
- {at: 0, is: 'right'},
- {at: 0.3, is: 'right'},
- {at: 0.6, is: 'right'},
- {at: 1, is: 'right'},
- {at: 1.5, is: 'right'},
-]);
-assertInterpolation({
- method: 'Web Animations',
- property: 'float',
- from: 'left',
- to: 'right'
-}, [
- {at: -0.3, is: 'left'},
- {at: 0, is: 'left'},
- {at: 0.3, is: 'left'},
- {at: 0.6, is: 'right'},
- {at: 1, is: 'right'},
- {at: 1.5, is: 'right'},
-]);
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698