mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title>Indexed Database Property Test</title>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
|
|
<script type="text/javascript;version=1.7">
|
|
function testSteps()
|
|
{
|
|
let request = mozIndexedDB.open(window.location.pathname, 1);
|
|
request.onerror = errorHandler;
|
|
request.onupgradeneeded = grabEventAndContinueHandler;
|
|
let event = yield;
|
|
|
|
let db = event.target.result;
|
|
db.onerror = errorHandler;
|
|
|
|
event.target.onsuccess = continueToNextStep;
|
|
|
|
db.createObjectStore("foo", { autoIncrement: true });
|
|
yield;
|
|
|
|
let transaction = db.transaction("foo");
|
|
continueToNextStep();
|
|
yield;
|
|
|
|
try {
|
|
transaction.objectStore("foo");
|
|
ok(false, "Should have thrown!");
|
|
}
|
|
catch (e) {
|
|
ok(e instanceof IDBDatabaseException, "Got database exception.");
|
|
is(e.code, IDBDatabaseException.NOT_ALLOWED_ERR, "Good error code.");
|
|
}
|
|
|
|
finishTest();
|
|
yield;
|
|
}
|
|
</script>
|
|
<script type="text/javascript;version=1.7" src="helpers.js"></script>
|
|
|
|
</head>
|
|
|
|
<body onload="runTest();"></body>
|
|
|
|
</html>
|