blob: 310014bc5105695e8fe690362c0f23c3f0c676a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<title>IDBDatabase.transaction() - opening a transaction defaults to a read-only mode </title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support.js"></script>
<script>
var db,
t = async_test(),
open_rq = createdb(t);
open_rq.onupgradeneeded = function(e) {
db = e.target.result;
db.createObjectStore('readonly');
};
open_rq.onsuccess = function(e) {
var txn = db.transaction('readonly');
assert_equals(txn.mode, "readonly", 'txn.mode');
t.done();
};
</script>
<div id="log"></div>
|