blob: a8d838154ca0396900469d63d0e8421ad4d9ce4e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>
function test(method, args) {
try {
var request = window.indexedDB[method].call(window.indexedDB, args);
document.write('Successfully called window.indexedDB.' + method + '().<br>');
} catch (exception) {
document.write('window.indexedDB.' + method + '() threw an exception: ' + exception.name + '<br>');
}
}
test('deleteDatabase', 'testDBName');
test('open', 'testDBName');
</script>
</body>
</head>