Bug 1415346 - Use single quote in script in file_event-dispatch.html. r?birtles draft
authorHiroyuki Ikezoe <hikezoe@mozilla.com>
Wed, 08 Nov 2017 12:15:00 +0900
changeset 694697 cf9a72a56123fcc3aec00defb4e3a5e2dc2f007c
parent 694696 0fdb84505302750618baf7778dff37eb1746ab22
child 694698 3cb0d0c7823d6a63b9e949b8604b1def12714937
push id88205
push userhikezoe@mozilla.com
push dateWed, 08 Nov 2017 03:47:13 +0000
reviewersbirtles
bugs1415346
milestone58.0a1
Bug 1415346 - Use single quote in script in file_event-dispatch.html. r?birtles MozReview-Commit-ID: H7coY2gzxOE
dom/animation/test/css-animations/file_event-dispatch.html
--- a/dom/animation/test/css-animations/file_event-dispatch.html
+++ b/dom/animation/test/css-animations/file_event-dispatch.html
@@ -37,17 +37,17 @@ function AnimationEventHandler(target) {
 AnimationEventHandler.prototype.clear = () => {
   this.animationstart     = undefined;
   this.animationiteration = undefined;
   this.animationend       = undefined;
   this.animationcancel    = undefined;
 }
 
 function setupAnimation(t, animationStyle) {
-  var div = addDiv(t, { style: "animation: " + animationStyle });
+  var div = addDiv(t, { style: 'animation: ' + animationStyle });
   var watcher = new EventWatcher(t, div, [ 'animationstart',
                                            'animationiteration',
                                            'animationend',
                                            'animationcancel' ]);
   var animation = div.getAnimations()[0];
 
   return [animation, watcher, div];
 }