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

Side by Side Diff: polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/visibility-interpolation.html

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <body>
3 <script src="../testharness/testharness.js"></script>
4 <script src="../testharness/testharnessreport.js"></script>
5 <script src="resources/interpolation-test.js"></script>
6 <script>
7 assertInterpolation({
8 property: 'visibility',
9 from: 'visible',
10 to: 'visible'
11 }, [
12 {at: -1, is: 'visible'},
13 {at: 0, is: 'visible'},
14 {at: 0.5, is: 'visible'},
15 {at: 1, is: 'visible'},
16 {at: 1.5, is: 'visible'},
17 ]);
18
19 assertInterpolation({
20 property: 'visibility',
21 from: 'visible',
22 to: 'hidden'
23 }, [
24 {at: -1, is: 'visible'},
25 {at: 0, is: 'visible'},
26 {at: 0.1, is: 'visible'},
27 {at: 0.9, is: 'visible'},
28 {at: 1, is: 'hidden'},
29 {at: 1.5, is: 'hidden'},
30 ]);
31
32 assertInterpolation({
33 property: 'visibility',
34 from: 'collapse',
35 to: 'visible'
36 }, [
37 {at: -1, is: 'collapse'},
38 {at: 0, is: 'collapse'},
39 {at: 0.1, is: 'visible'},
40 {at: 0.9, is: 'visible'},
41 {at: 1, is: 'visible'},
42 {at: 1.5, is: 'visible'},
43 ]);
44
45 assertInterpolation({
46 property: 'visibility',
47 from: 'collapse',
48 to: 'hidden'
49 }, [
50 {at: -1, is: 'collapse'},
51 {at: 0, is: 'collapse'},
52 {at: 0.4, is: 'collapse'},
53 {at: 0.5, is: 'hidden'},
54 {at: 1, is: 'hidden'},
55 {at: 1.5, is: 'hidden'},
56 ]);
57 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698