Bug 1466031 - Tweak whitespace in test_animation-id.html; r?hiro draft
authorBrian Birtles <birtles@gmail.com>
Mon, 04 Jun 2018 10:10:38 +0900
changeset 803421 006a4f853a3c25b41ef7b31b75cd74b9e4bcef7a
parent 803420 4732afc2663b653015d2a4dd71889339393ecc19
child 803422 c4049ccf17b97a6e6fa0d832e68d290f8c1c7b8e
push id112095
push userbmo:bbirtles@mozilla.com
push dateMon, 04 Jun 2018 01:13:47 +0000
reviewershiro
bugs1466031
milestone62.0a1
Bug 1466031 - Tweak whitespace in test_animation-id.html; r?hiro This just makes the grouping a little more clear I think. MozReview-Commit-ID: AbqjjyIpKhk
dom/animation/test/css-animations/test_animation-id.html
--- a/dom/animation/test/css-animations/test_animation-id.html
+++ b/dom/animation/test/css-animations/test_animation-id.html
@@ -12,16 +12,16 @@
 <script>
 'use strict';
 
 test(t => {
   const div = addDiv(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'
-
   assert_equals(animation.id, 'anim', 'animation.id reflects the value set');
 }, 'Animation.id for CSS Animations');
 
 </script>
 </body>
 </html>