Bug 1466031 - Tweak whitespace in test_animation-id.html; r?hiro draft
authorBrian Birtles <birtles@gmail.com>
Fri, 01 Jun 2018 16:27:01 +0900
changeset 802581 17008420a96815c021ab4514f1e639938a6576db
parent 802580 5da3dc64806f4b4b5c9fb7fa608e9e1d629998db
child 802582 d2b095af49e0c361e2bad20d11389e4937ada7c1
push id111920
push userbmo:bbirtles@mozilla.com
push dateFri, 01 Jun 2018 07:32:08 +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: 3hrMhhHNxwi
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>