mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
40 lines
982 B
HTML
40 lines
982 B
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title>Indexed Database Test</title>
|
|
|
|
<script type="text/javascript;version=1.7">
|
|
function testSteps()
|
|
{
|
|
let request = indexedDB.open("browser_forgetThisSite.js", 11);
|
|
request.onerror = grabEventAndContinueHandler;
|
|
request.onupgradeneeded = grabEventAndContinueHandler;
|
|
let event = yield undefined;
|
|
|
|
if (event.type == "error") {
|
|
testException = event.target.error.name;
|
|
}
|
|
else {
|
|
let db = event.target.result;
|
|
|
|
testResult = db.version;
|
|
|
|
event.target.transaction.oncomplete = finishTest;
|
|
yield undefined;
|
|
}
|
|
|
|
yield undefined;
|
|
}
|
|
</script>
|
|
|
|
<script type="text/javascript;version=1.7" src="browserHelpers.js"></script>
|
|
|
|
</head>
|
|
|
|
<body onload="runTest();" onunload="finishTestNow();"></body>
|
|
|
|
</html>
|