зеркало из https://github.com/mozilla/gecko-dev.git
32 строки
878 B
HTML
32 строки
878 B
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">
|
|
/* import-globals-from helpers.js */
|
|
function* testSteps()
|
|
{
|
|
is("open" in indexedDB, true, "open() defined");
|
|
is("openForPrincipal" in indexedDB, false, "openForPrincipal() not defined");
|
|
|
|
is("deleteDatabase" in indexedDB, true, "deleteDatabase() defined");
|
|
is("deleteForPrincipal" in indexedDB, false, "deleteForPrincipal() not defined");
|
|
|
|
finishTest();
|
|
}
|
|
</script>
|
|
<script type="text/javascript" src="helpers.js"></script>
|
|
|
|
</head>
|
|
|
|
<body onload="runTest();"></body>
|
|
|
|
</html>
|