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

Unified Diff: LayoutTests/animations/interpolation/position-interpolation.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/position-interpolation.html
diff --git a/LayoutTests/animations/interpolation/position-interpolation.html b/LayoutTests/animations/interpolation/position-interpolation.html
index 3feb578b0dd7a1f33982886c409ce350778bbdea..8ba88c5149c3a9fb349300abb35755c113e76d7b 100644
--- a/LayoutTests/animations/interpolation/position-interpolation.html
+++ b/LayoutTests/animations/interpolation/position-interpolation.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<meta charset="UTF-8">
<style>
-.container {
+.parent {
position: relative;
display: inline-block;
height: 10px;
@@ -12,13 +12,14 @@
height: 10px;
background-color: black;
left: 10px;
+ position: 10px;
}
.expected {
background-color: green;
}
</style>
<template id="target-template">
- <div class="container">
+ <div class="parent">
<div class="target"></div>
</div>
</template>
@@ -30,6 +31,7 @@ assertNoInterpolation({
from: 'absolute',
to: 'static',
});
+
assertInterpolation({
property: 'position',
from: '',

Powered by Google App Engine
This is Rietveld 408576698