- add sources.
[platform/framework/web/crosswalk.git] / src / android_webview / test / data / device_files / database_access.html
1 <html>
2     <head><title>None</title><script>
3         function checkDatabase() {
4             var db = null;
5             if ('openDatabase' in window) {
6                 db = window.openDatabase('test', '1.0', 'results', 1*1024*1024);
7             }
8             document.title = db ? "Has database" : "No database";
9         }
10     </script></head>
11     <body onload='checkDatabase()'>
12     </body>
13 </html>