зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
456 B
HTML
25 строки
456 B
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function zombieWindow()
|
|
{
|
|
var frame = document.createElement("iframe");
|
|
document.body.appendChild(frame);
|
|
var frameWin = frame.contentWindow;
|
|
frame.remove();
|
|
return frameWin;
|
|
}
|
|
|
|
function boom() {
|
|
zombieWindow().navigator.mozGetUserMedia({ "fake": true, "audio": true }, function(stream) {}, function(e) {});
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|