blob: 222b878f926c0556013623695d8e87733a3b89a5 [file] [log] [blame]
<html>
<head>
<script>
if (window.testRunner){
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
let request = indexedDB.open(Math.random());
request.onupgradeneeded = () => {
let db = request.result;
let idbObjectStore = db.createObjectStore('b');
let transaction = idbObjectStore.transaction;
transaction.dispatchEvent(new Event(''));
globalThis.testRunner?.notifyDone();
};
</script>
</head>
<body>
WebKit should not crash.
<body>
</html>