haikuwebkit/LayoutTests/storage/websql/openDatabase-deprecation.html

17 lines
440 B
HTML

<!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>
assert_equals(Object.keys(window).indexOf("openDatabase"), -1);
window.openDatabase(null, null, null, null);
done();
</script>
</body>
</html>