mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 01:31:00 +00:00
37 lines
904 B
HTML
37 lines
904 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");
|
||
|
request.onerror = grabEventAndContinueHandler;
|
||
|
request.onsuccess = grabEventAndContinueHandler;
|
||
|
let event = yield undefined;
|
||
|
|
||
|
if (event.type == "error") {
|
||
|
testException = event.target.error.name;
|
||
|
}
|
||
|
else {
|
||
|
let db = event.target.result;
|
||
|
testResult = db.version;
|
||
|
}
|
||
|
|
||
|
finishTest()
|
||
|
yield undefined;
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<script type="text/javascript;version=1.7" src="browserHelpers.js"></script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body onload="runTest();" onunload="finishTestNow();"></body>
|
||
|
|
||
|
</html>
|