Colons after each video format in about:version

This commit is contained in:
Christian Dywan 2011-11-01 00:28:41 +01:00
parent 8dd92c59a7
commit 686fee50b7

View file

@ -3655,11 +3655,11 @@ list_video_formats ()
"var supported = function (format) { " "var supported = function (format) { "
"var video = document.createElement('video');" "var video = document.createElement('video');"
"return !!video.canPlayType && video.canPlayType (format) != 'no' };" "return !!video.canPlayType && video.canPlayType (format) != 'no' };"
"' H264 ' + " "' H264: ' + "
"supported('video/mp4; codecs=\"avc1.42E01E, mp4a.40.2\"') + " "supported('video/mp4; codecs=\"avc1.42E01E, mp4a.40.2\"') + "
"' Ogg Theora ' + " "' Ogg Theora: ' + "
"supported('video/ogg; codecs=\"theora, vorbis\"') + " "supported('video/ogg; codecs=\"theora, vorbis\"') + "
"' WebM ' + " "' WebM: ' + "
"supported('video/webm; codecs=\"vp8, vorbis\"')" "supported('video/webm; codecs=\"vp8, vorbis\"')"
"", NULL); "", NULL);
gtk_widget_destroy (web_view); gtk_widget_destroy (web_view);