2 <head><title>None
</title><script>
3 function checkDatabase() {
5 if ('openDatabase' in window
) {
6 db
= window
.openDatabase('test', '1.0', 'results', 1*1024*1024);
8 document
.title
= db
? "Has database" : "No database";
11 <body onload='checkDatabase()'
>