blob: b6543ba10e1b2eab7996d120d7684a4cb83860b4 [file] [log] [blame]
<html>
<head>
<script>
function runTest() {
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.clearAllDatabases();
}
try {
var db = openDatabase('OverQuotaOpen', '', 'Test for bug 36473: missing lock in call to doneCreatingDatabase', 20000000);
} catch (err) {
document.getElementById('result').innerHTML = 'PASS'
}
}
</script>
</head>
<body onload="runTest()">
<div>This tests that calling openDatabase with a size greater or equal to the test max quota limit of 10MB
doesn't assert on debug builds.
<div id="result">
FAIL: We shouldn't have been able to open the database.
</div>
</body>
</html>