mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
296 B
HTML
29 lines
296 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
|
|
var a = new FileReader();
|
|
|
|
function f() {
|
|
a.removeEventListener("loadend", f);
|
|
g();
|
|
}
|
|
|
|
function g() {
|
|
a.readAsBinaryString(new Blob());
|
|
}
|
|
|
|
a.addEventListener("loadend", f);
|
|
|
|
try {
|
|
g();
|
|
g();
|
|
} catch(e) {}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|