View Single Post
Old 09-19-2013, 11:33 PM   #118
thatworkshop
hub
thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.thatworkshop ought to be getting tired of karma fortunes by now.
 
thatworkshop's Avatar
 
Posts: 715
Karma: 2151032
Join Date: Jan 2012
Location: Iranian in Canada
Device: K3G, DXG, Kobo mini
WebRTC is not supported in the WebKit that comes with Kindle Touch.
Would be nice to have this feature if possible!?

Spoiler:
Simply tested it with this code:
Code:
<!DOCTYPE html>
<html>
<head>
<script>
function webRTCAvailable()
{
if(window.webkitRTCPeerConnection || window.mozRTCPeerConnection){
document.getElementById("test").innerHTML="Yes";
}
else
{
document.getElementById("test").innerHTML="No";
}
}
</script>
</head>
<body>

<h1>webRTC Availability Test</h1>
Does your browser supports webRTC?
<button type="button" onclick="webRTCAvailable()">Test</button>
<p id="test"></p>

</body>
</html>
thatworkshop is offline   Reply With Quote