chromium/third_party/blink/web_tests/http/tests/security/resources/cross-origin-iframe-for-websql.html

<html>
<head>
<script>
try {
	var c = window.openDatabase('testdb', '1.0', 'Testing database', 512 * 1024);
	document.write('No exception');
} catch (exception) {
	document.write(exception.name);
}
</script>
</head>
<body>
</body>
</head>