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

Unified Diff: polymer_0.5.0/bower_components/web-animations-js/test/blink/3-keyframes-with-offsets.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, 12 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: polymer_0.5.0/bower_components/web-animations-js/test/blink/3-keyframes-with-offsets.html
diff --git a/polymer_0.5.0/bower_components/web-animations-js/test/blink/3-keyframes-with-offsets.html b/polymer_0.5.0/bower_components/web-animations-js/test/blink/3-keyframes-with-offsets.html
new file mode 100644
index 0000000000000000000000000000000000000000..fcd421d404aea90c936624485b9f79d6e4020573
--- /dev/null
+++ b/polymer_0.5.0/bower_components/web-animations-js/test/blink/3-keyframes-with-offsets.html
@@ -0,0 +1,147 @@
+<!DOCTYPE html>
+<script src="testharness/testharness.js"></script>
+<script src="testharness/testharnessreport.js"></script>
+<script src="resources/keyframes-test.js"></script>
+<script>
+var keyframeA = {opacity: '0.5', left: '50px'};
+var keyframeB = {opacity: '0', left: '0px'};
+var keyframeC = {opacity: '0.75', left: '75px'};
+
+var keyframeBExpectations = {
+ 0: {opacity: '0.5', left: '50px'},
+ 0.25: {opacity: '0.25', left: '25px'},
+ 0.5: {opacity: '0', left: '0px'}, // Corresponds to keyframeB (offset unspecified).
+ 0.75: {opacity: '0.375', left: '37.5px'},
+ 1: {opacity: '0.75', left: '75px'},
+};
+
+var offsetKeyframeA = {opacity: keyframeA.opacity, left: keyframeA.left, offset: 0};
+var offsetKeyframeB = {opacity: keyframeB.opacity, left: keyframeB.left, offset: 0.25};
+var offsetKeyframeC = {opacity: keyframeC.opacity, left: keyframeC.left, offset: 1};
+
+var offsetKeyframeBExpectations = {
+ 0: {opacity: '0.5', left: '50px'},
+ 0.125: {opacity: '0.25', left: '25px'},
+ 0.25: {opacity: '0', left: '0px'}, // Corresponds to offsetKeyframeB (offset 0.25).
+ 0.5: {opacity: '0.25', left: '25px'},
+ 0.75: {opacity: '0.5', left: '50px'},
+ 1: {opacity: '0.75', left: '75px'},
+};
+
+test(function() {
+ assertAnimationStyles([
+ offsetKeyframeA,
+ keyframeB,
+ keyframeC,
+ ], keyframeBExpectations, 'with first offset specified');
+ assertAnimationStyles([
+ keyframeA,
+ offsetKeyframeB,
+ keyframeC,
+ ], offsetKeyframeBExpectations, 'with second offset specified');
+ assertAnimationStyles([
+ keyframeA,
+ keyframeB,
+ offsetKeyframeC,
+ ], keyframeBExpectations, 'with third offset specified');
+},
+'element.animate() with 3 keyframes and 1 offset specified',
+{
+ help: 'http://dev.w3.org/fxtf/web-animations/#keyframe-animation-effects',
+ assert: [
+ 'element.animate() should start an animation when three keyframes',
+ 'are provided with matching properties and one offset specified.',
+ 'The keyframes must maintain their ordering and get distributed',
+ 'correctly.',
+ ],
+ author: 'Alan Cutter',
+});
+
+test(function() {
+ assertAnimationStyles([
+ keyframeA,
+ offsetKeyframeB,
+ offsetKeyframeC,
+ ], offsetKeyframeBExpectations, 'with first offset unspecified');
+ assertAnimationStyles([
+ offsetKeyframeA,
+ keyframeB,
+ offsetKeyframeC,
+ ], keyframeBExpectations, 'with second offset unspecified');
+ assertAnimationStyles([
+ offsetKeyframeA,
+ offsetKeyframeB,
+ keyframeC,
+ ], offsetKeyframeBExpectations, 'with third offset unspecified');
+},
+'element.animate() with 3 keyframes and 2 offsets specified',
+{
+ help: 'http://dev.w3.org/fxtf/web-animations/#keyframe-animation-effects',
+ assert: [
+ 'element.animate() should start an animation when three keyframes',
+ 'are provided with matching properties and two offsets specified.',
+ 'The keyframes must maintain their ordering and get distributed',
+ 'correctly.',
+ ],
+ author: 'Alan Cutter',
+});
+
+test(function() {
+ assertAnimationStyles([
+ offsetKeyframeA,
+ offsetKeyframeB,
+ offsetKeyframeC,
+ ], offsetKeyframeBExpectations, 'with ordered offsets');
+
+ assert_throws('InvalidModificationError', function() {
+ assertAnimationStyles([
+ offsetKeyframeA,
+ offsetKeyframeC,
+ offsetKeyframeB,
+ ], offsetKeyframeBExpectations, 'with unordered offsets (1)');
+ });
+
+ assert_throws('InvalidModificationError', function() {
+ assertAnimationStyles([
+ offsetKeyframeB,
+ offsetKeyframeA,
+ offsetKeyframeC,
+ ], offsetKeyframeBExpectations, 'with unordered offsets (2)');
+ });
+
+ assert_throws('InvalidModificationError', function() {
+ assertAnimationStyles([
+ offsetKeyframeB,
+ offsetKeyframeC,
+ offsetKeyframeA,
+ ], offsetKeyframeBExpectations, 'with unordered offsets (3)');
+ });
+
+ assert_throws('InvalidModificationError', function() {
+ assertAnimationStyles([
+ offsetKeyframeC,
+ offsetKeyframeA,
+ offsetKeyframeB,
+ ], offsetKeyframeBExpectations, 'with unordered offsets (4)');
+ });
+
+ assert_throws('InvalidModificationError', function() {
+ assertAnimationStyles([
+ offsetKeyframeC,
+ offsetKeyframeB,
+ offsetKeyframeA,
+ ], offsetKeyframeBExpectations, 'with unordered offsets (5)');
+ });
+},
+'element.animate() with 3 keyframes and 3 offsets specified',
+{
+ help: 'http://dev.w3.org/fxtf/web-animations/#keyframe-animation-effects',
+ assert: [
+ 'element.animate() should start an animation when three keyframes',
+ 'are provided with matching properties and all offsets specified.',
+ 'The keyframes must maintain their ordering and get distributed',
+ 'correctly.',
+ ],
+ author: 'Alan Cutter',
+});
+</script>

Powered by Google App Engine
This is Rietveld 408576698