blob: 566c01c773288e3c6211aa417ccbaa7a40bb76ed [file] [log] [blame]
<html>
<head><title>None</title><script>
function checkDatabase() {
var db = null;
if ('openDatabase' in window) {
db = window.openDatabase('test', '1.0', 'results', 1*1024*1024);
}
document.title = db ? "Has database" : "No database";
}
</script></head>
<body onload='checkDatabase()'>
</body>
</html>