summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/open-database-set-empty-version.html
blob: f3607fd19c9d7851d2a0efa43e35040ac99edf4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<html>
<head>
<script>
function runTest() {
    if (window.layoutTestController) {
        layoutTestController.dumpAsText();
        layoutTestController.clearAllDatabases();
    }
    
    try {    
        var db = openDatabase('28417Test', '', 'Test for bug 28417: openDatabase() with empty version sets db version up incorrectly', 0);
        // The next openDatabase call should fail because the database version was set to '' by the call above, and now we are expecting a different version.
        var db2 = openDatabase('28417Test', 'test', 'Test for bug 28417: openDatabase() with empty version sets db version up incorrectly', 0);
    } catch (e) {
        document.getElementById('result').innerHTML = 'SUCCESS, an exception was thrown. ' + e;
    }
}
</script>
</head>
<body onload="runTest()">
<div>This tests that calling openDatabase with an empty version string sets the current version of that database to the empty string and subsequent attempts to open the database with a different expected version throw an exception.</div>
<div id="result">
FAILURE - an exception was expected.
</div>
</body>
</html>