diff --git a/content/media/test/crashtests/1028458.html b/content/media/test/crashtests/1028458.html index 23a66d47a3e8..3ac45a133877 100644 --- a/content/media/test/crashtests/1028458.html +++ b/content/media/test/crashtests/1028458.html @@ -14,7 +14,9 @@ navigator.mozGetUserMedia({audio: true}, function(stream) { testAudio.mozSrcObject = stream; testAudio.play(); }, function(err) { - console.log(err); + // Don't go orange if we can't get an audio input stream, + // as this is not what we are trying to test and can happen on Windows. + document.querySelector("html").className = ""; });