gopher: (disabled) controls and size attributes on audio/video

Currently those crash WebPositive when enabled.
This commit is contained in:
François Revol
2014-07-28 18:34:50 +02:00
parent 7749faf602
commit 579f95647d
@@ -621,6 +621,9 @@ BGopherRequest::_ParseInput(bool last)
item << "<a href=\"" << link << "\">"
"<span class=\"audio\">" << title << "</span></a>"
"<audio src=\"" << link << "\" "
//TODO:Fix crash in WebPositive with these
//"controls=\"controls\" "
//"width=\"300\" height=\"50\" "
"alt=\"" << title << "\"/>"
"<span>[player]</span></audio>"
"<br/>\n";
@@ -636,6 +639,9 @@ BGopherRequest::_ParseInput(bool last)
item << "<a href=\"" << link << "\">"
"<span class=\"video\">" << title << "</span></a>"
"<video src=\"" << link << "\" "
//TODO:Fix crash in WebPositive with these
//"controls=\"controls\" "
//"width=\"300\" height=\"300\" "
"alt=\"" << title << "\"/>"
"<span>[player]</span></audio>"
"<br/>\n";