Bug 608634 - Add the bug number for the todo part. r?jwwang draft
authorctai <ctai@mozilla.com>
Wed, 17 Aug 2016 17:37:58 +0800
changeset 401658 d660e470e89adf296c8a4a817832d0d201ca052b
parent 401657 0c2934ab57a88a452a798c80c1dafaae0bbabc45
child 528553 0fc4fca38bde5566da0d70ec39ae84ce57cc6c8a
push id26531
push userbmo:ctai@mozilla.com
push dateWed, 17 Aug 2016 09:40:14 +0000
reviewersjwwang
bugs608634
milestone51.0a1
Bug 608634 - Add the bug number for the todo part. r?jwwang MozReview-Commit-ID: 7r3GMRiuTNf
dom/media/test/test_error_in_video_document.html
--- a/dom/media/test/test_error_in_video_document.html
+++ b/dom/media/test/test_error_in_video_document.html
@@ -51,16 +51,17 @@ if (!t) {
 
   var f = document.createElement("iframe");
   f.src = t.name;
   f.addEventListener("load", function() {
     if (documentVideo().error) {
       info("Error occured by the time we got |load| - checking directly.");
       check();
     } else {
+      //TODO: Fix this todo in Bug 1295923.
       todo(false, "Error hasn't occurred yet - adding |error| event listener. This shouldn't happen, see bug 608634.");
       documentVideo().addEventListener("error", check);
     }
   }, false);
   document.body.appendChild(f);
 }
 
 </script>