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

Unified Diff: LayoutTests/animations/interpolation/background-color-interpolation-unset.html

Issue 1265873002: Add test coverage for interpolations using CSS wide keywords and neutral keyframes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 4 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/background-color-interpolation-unset.html
diff --git a/LayoutTests/animations/interpolation/background-color-interpolation-unset.html b/LayoutTests/animations/interpolation/background-color-interpolation-unset.html
deleted file mode 100644
index 5a3c3b59a92f2f5cf5bfdfa616e585ef0377a831..0000000000000000000000000000000000000000
--- a/LayoutTests/animations/interpolation/background-color-interpolation-unset.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<meta charset="UTF-8">
-<style>
-.target {
- width: 60px;
- height: 60px;
- display: inline-block;
- border: 2px solid black;
- margin-right: 2px;
- background-color: red;
-}
-.expected {
- background-color: green;
- margin-right: 15px;
-}
-</style>
-<body>
-<script src="resources/interpolation-test.js"></script>
-<script>
-assertInterpolation({
- property: 'background-color',
- from: 'unset',
- to: 'transparent'
-}, [
- {at: -0.3, is: 'transparent'},
- {at: 0, is: 'transparent'},
- {at: 0.3, is: 'transparent'},
- {at: 0.6, is: 'transparent'},
- {at: 1, is: 'transparent'},
- {at: 1.5, is: 'transparent'},
-]);
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698