mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-19 02:13:04 +00:00
19 lines
371 B
HTML
19 lines
371 B
HTML
<html>
|
|
<head>
|
|
<title></title>
|
|
<script>
|
|
var ret = "pass";
|
|
try {
|
|
window.foo = window.crypto.getRandomValues;
|
|
} catch(ex) {
|
|
ret = "" + ex;
|
|
}
|
|
parent.postMessage(ret, "*");
|
|
</script>
|
|
<style>
|
|
</style>
|
|
</head>
|
|
<body onload="document.body.textContent = 'Crypto test file on ' + location">
|
|
</body>
|
|
</html>
|