added missing now mandatory error callback parameter
authorDominique Hazael-Massieux <dom@w3.org>
Thu, 30 May 2013 14:08:44 +0200
changeset 29 8228717234d3
parent 28 dccd708b64df
child 30 92e9067a383e
added missing now mandatory error callback parameter
submitted/W3C/empty-option-param.html
--- a/submitted/W3C/empty-option-param.html	Fri Jun 15 16:00:45 2012 +0200
+++ b/submitted/W3C/empty-option-param.html	Thu May 30 14:08:44 2013 +0200
@@ -23,7 +23,9 @@
       navigator.getUserMedia({}, function (stream) {
         assert_unreached("This should never be triggered since the constraints parameter is empty");
         t.done();
-      })
+      }, function (error) {
+        assert_unreached("This should never be triggered since the constraints parameter is empty");
+         });
   });
   t.done();
 });