mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ae81d3f95d
--HG-- extra : rebase_source : aa8f7c00f84454858e89ac06721cadef8bb5adba
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>
|