Skip to content

Instantly share code, notes, and snippets.

@jkndrkn
Created January 14, 2015 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkndrkn/aa9fc0fe8da781d44ebe to your computer and use it in GitHub Desktop.
Save jkndrkn/aa9fc0fe8da781d44ebe to your computer and use it in GitHub Desktop.
SecurityError: DOM Exception 18 Test for Chrome on iOS
<html>
<body>
<h1>Test basic WebSQL usage</h1>
<h2>Refresh this page until you see the error (in Chrome for iOS)</h2>
<pre id="display"></pre>
<script>
function log(str) {
document.getElementById('display').innerHTML += str.toString() + '\n';
}
try {
var db = openDatabase('mydatabase', '1', 'mydatabase', 50000000);
log('opened database');
} catch (err) {
log('unable to open database');
log(err);
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment