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

Side by Side Diff: LayoutTests/animations/retain-zero-percent.html

Issue 1248093002: Move interpolated Length unit types out of InterpolableValue into NonInterpolableValue (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase again Created 5 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <script src="../resources/testharness.js"></script>
2 <script src="../resources/testharnessreport.js"></script>
3 <div id="target"></div>
4 <script>
5 test(function() {
6 var animation = target.animate([{motionOffset: '-1%'}, {motionOffset: '1%'}], 1);
7 animation.pause();
8 animation.currentTime = 0.5;
9 assert_equals(getComputedStyle(target).motionOffset, '0%');
10 });
11 </script>
OLDNEW
« no previous file with comments | « LayoutTests/animations/composition/left-composition.html ('k') | Source/core/animation/InterpolationType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698