summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/web-animations/resources/keyframe-utils.js
blob: fdea1d8d93ca05ebd093e5a155f97896a2aed49f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
'use strict';

// =======================================
//
// Utility functions for testing keyframes
//
// =======================================


// ------------------------------
//  Helper functions
// ------------------------------

/**
 * Test equality between two lists of computed keyframes
 * @param {Array.<ComputedKeyframe>} a - actual computed keyframes
 * @param {Array.<ComputedKeyframe>} b - expected computed keyframes
 */
function assert_frame_lists_equal(a, b) {
  assert_equals(a.length, b.length, 'number of frames');
  for (let i = 0; i < Math.min(a.length, b.length); i++) {
    assert_frames_equal(a[i], b[i], `ComputedKeyframe #${i}`);
  }
}

/** Helper for assert_frame_lists_equal */
function assert_frames_equal(a, b, name) {
  assert_equals(Object.keys(a).sort().toString(),
                Object.keys(b).sort().toString(),
                `properties on ${name} should match`);
  // Iterates sorted keys to ensure stable failures.
  for (const p of Object.keys(a).sort()) {
    assert_equals(a[p], b[p], `value for '${p}' on ${name}`);
  }
}