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

Unified Diff: LayoutTests/animations/interpolation/position-interpolation.html

Issue 1153943003: Add foundation for removing AnimatableValues from StyleInterpolation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review changes 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/position-interpolation.html
diff --git a/LayoutTests/animations/interpolation/position-interpolation.html b/LayoutTests/animations/interpolation/position-interpolation.html
new file mode 100644
index 0000000000000000000000000000000000000000..dc2e497cfbbc71e837eb95ad35127da05d626696
--- /dev/null
+++ b/LayoutTests/animations/interpolation/position-interpolation.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<meta charset="UTF-8">
+<style>
+.container {
+ position: relative;
+ display: inline-block;
+ height: 10px;
+ margin: 0px;
+}
+.target {
+ width: 10px;
+ height: 10px;
+ background-color: black;
+ left: 10px;
+}
+.expected {
+ background-color: green;
+}
+</style>
+<template id="target-template">
+ <div class="container">
+ <div class="target"></div>
+ </div>
+</template>
+<body>
+<script src="resources/interpolation-test.js"></script>
+<script>
+assertNoInterpolation({
+ method: 'Web Animations',
+ property: 'position',
+ from: 'absolute',
+ to: 'static'
+});
+</script>
+</body>
« no previous file with comments | « LayoutTests/animations/interpolation/display-interpolation-expected.txt ('k') | Source/core/animation/AnimationType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698