зеркало из https://github.com/mozilla/pluotsorbet.git
25 строки
460 B
HTML
25 строки
460 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
|
|
<body style="white-space: pre-wrap">
|
|
|
|
<script type="text/javascript">
|
|
var request = indexedDB.deleteDatabase("asyncStorage");
|
|
|
|
request.onerror = function(event) {
|
|
document.body.appendChild(document.createTextNode("FAIL " + request.errorCode));
|
|
};
|
|
|
|
request.onsuccess = function(event) {
|
|
document.body.appendChild(document.createTextNode("DONE"));
|
|
};
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|