blob: 090f99d2529addd2269bb6cf7f9b579161b50c0f [file] [log] [blame]
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>openDatabase deprecation</title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
</head>
<body>
<script>
setup({ single_test: true });
assert_equals(Object.keys(window).indexOf("openDatabase"), -1);
window.openDatabase(null, null, null, null);
done();
</script>
</body>
</html>