summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/storage/indexeddb/transaction-crash-in-tasks.html
blob: e812c616895a119fb293ba573ef6bdcff5fc0394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<script src="../../fast/js/resources/js-test-pre.js"></script>
<script src="resources/shared.js"></script>
<script>

description("Regression test for http://webkit.org/b/102283");

test();
function test() {
    removeVendorPrefixes();
    setDBNameFromPath();

    evalAndLog("indexedDB.open(dbname, 2)");
    evalAndLog("indexedDB.open(dbname, 3)");

    finishJSTest();
}
</script>
<script src=../../fast/js/resources/js-test-post.js></script>