summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/IndexedDB/idbtransaction.htm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/IndexedDB/idbtransaction.htm
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/IndexedDB/idbtransaction.htm')
-rw-r--r--testing/web-platform/tests/IndexedDB/idbtransaction.htm63
1 files changed, 63 insertions, 0 deletions
diff --git a/testing/web-platform/tests/IndexedDB/idbtransaction.htm b/testing/web-platform/tests/IndexedDB/idbtransaction.htm
new file mode 100644
index 0000000000..d08e170eb6
--- /dev/null
+++ b/testing/web-platform/tests/IndexedDB/idbtransaction.htm
@@ -0,0 +1,63 @@
+<!DOCTYPE html>
+<title>IDBTransaction</title>
+<link rel="author" href="mailto:odinho@opera.com" title="Odin Hørthe Omdal">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="resources/support.js"></script>
+
+<script>
+async_test(function(t) {
+ var dbname = "idbtransaction-" + document.location + t.name;
+ indexedDB.deleteDatabase(dbname);
+ var open_rq = indexedDB.open(dbname);
+
+ open_rq.onblocked = t.unreached_func('open_rq.onblocked');
+ open_rq.onerror = t.unreached_func('open_rq.onerror');
+
+ open_rq.onupgradeneeded = t.step_func(function(e) {
+ t.add_cleanup(function() {
+ open_rq.onerror = function(e) {
+ e.preventDefault();
+ };
+ open_rq.result.close();
+ indexedDB.deleteDatabase(open_rq.result.name);
+ });
+
+ assert_equals(e.target, open_rq, "e.target is reusing the same IDBOpenDBRequest");
+ assert_equals(e.target.transaction, open_rq.transaction, "IDBOpenDBRequest.transaction");
+
+ assert_true(e.target.transaction instanceof IDBTransaction, "transaction instanceof IDBTransaction");
+ t.done();
+ });
+
+}, document.title + " - request gotten by the handler");
+
+async_test(function(t) {
+ var dbname = "idbtransaction-" + document.location + t.name;
+ indexedDB.deleteDatabase(dbname);
+ var open_rq = indexedDB.open(dbname);
+
+ assert_equals(open_rq.transaction, null, "IDBOpenDBRequest.transaction");
+ assert_equals(open_rq.source, null, "IDBOpenDBRequest.source");
+ assert_equals(open_rq.readyState, "pending", "IDBOpenDBRequest.readyState");
+
+ assert_true(open_rq instanceof IDBOpenDBRequest, "open_rq instanceof IDBOpenDBRequest");
+ assert_equals(open_rq + "", "[object IDBOpenDBRequest]", "IDBOpenDBRequest (open_rq)");
+
+ open_rq.onblocked = t.unreached_func('open_rq.onblocked');
+ open_rq.onerror = t.unreached_func('open_rq.onerror');
+
+ open_rq.onupgradeneeded = t.step_func(function() {
+ t.add_cleanup(function() {
+ open_rq.onerror = function(e) {
+ e.preventDefault();
+ };
+ open_rq.result.close();
+ indexedDB.deleteDatabase(open_rq.result.name);
+ });
+ t.done();
+ });
+
+}, document.title + " - request returned by open()");
+
+</script>