Update web-platform-tests to revision 756a676d640e9a772f565964285b2f20f6164fce

This commit is contained in:
WPT Sync Bot 2019-09-07 10:23:51 +00:00
parent a38f28f811
commit 3d5ad91231
3066 changed files with 23973 additions and 26209 deletions

View file

@ -85,6 +85,16 @@ const gKeyframesTests = [
keyframe(computedOffset(1),
{ marginTop: '60px', margin: '10px 20px 30px 40px' })],
},
{
desc: 'a two property (one shorthand and one of its shorthand components)'
+ ' two value property-indexed keyframes specification',
input: { border: ['pink', '2px'],
borderColor: ['green', 'blue'] },
output: [keyframe(computedOffset(0),
{ border: 'pink', borderColor: 'green' }),
keyframe(computedOffset(1),
{ border: '2px', borderColor: 'blue' })],
},
{
desc: 'a two property two value property-indexed keyframes specification',
input: { left: ['10px', '20px'],