Bug 1466031 - Tweak whitespace in test_animation-id.html; r=hiro

This just makes the grouping a little more clear I think.

--HG--
extra : rebase_source : 67749506b5befd705cd29331383066e5fe25afef
This commit is contained in:
Brian Birtles 2018-06-04 10:20:55 +09:00
parent 5becd5775e
commit 4c2ded77b8

View File

@ -17,8 +17,8 @@ test(t => {
div.style.animation = 'abc 100s';
const animation = div.getAnimations()[0];
assert_equals(animation.id, '', 'id for CSS Animation is initially empty');
animation.id = 'anim'
animation.id = 'anim'
assert_equals(animation.id, 'anim', 'animation.id reflects the value set');
}, 'Animation.id for CSS Animations');