mirror of
https://github.com/servo/servo.git
synced 2025-08-09 15:35:34 +01:00
Update web-platform-tests to revision 2dda7b8c10c7566fa6167a32b09c85d51baf2a85
This commit is contained in:
parent
25ebde78aa
commit
8edc7686ef
129 changed files with 5280 additions and 820 deletions
|
@ -12,11 +12,11 @@
|
|||
// ------------------------------
|
||||
|
||||
const gGoodKeyframeCompositeValueTests = [
|
||||
'replace', 'add', 'accumulate', null
|
||||
'replace', 'add', 'accumulate', 'auto'
|
||||
];
|
||||
|
||||
const gBadKeyframeCompositeValueTests = [
|
||||
'unrecognised', 'replace ', 'Replace'
|
||||
'unrecognised', 'replace ', 'Replace', null
|
||||
];
|
||||
|
||||
const gGoodOptionsCompositeValueTests = [
|
||||
|
@ -54,7 +54,7 @@ const keyframe = (offset, props, easing='linear', composite) => {
|
|||
// Object.assign instead.
|
||||
const result = {};
|
||||
Object.assign(result, offset, props, { easing });
|
||||
result.composite = composite || null;
|
||||
result.composite = composite || 'auto';
|
||||
return result;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue