You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The <dfn attribute for=IDBDatabase>objectStoreNames</dfn> getter steps are to
2510
-
return a new {{DOMStringList}} associated with a [=sorted name list=] of the [=object-store/names=] of
2511
-
the [=/object stores=] in [=/this=]'s [=object store set=].
2515
+
<div algorithm>
2516
+
The <dfn attribute for=IDBDatabase>objectStoreNames</dfn> getter steps are:
2517
+
2518
+
1. Let |names| be a [=/list=] of the [=object-store/names=] of the [=/object stores=] in [=/this=]'s [=object store set=].
2519
+
1. Return the result (a {{DOMStringList}}) of [=/creating a sorted name list=] with |names|.
2520
+
2521
+
</div>
2512
2522
2513
2523
<details class=note>
2514
2524
<summary>
@@ -2847,9 +2857,14 @@ instance every time it is inspected. Changing the properties of the
2847
2857
object has no effect on the [=/object store=].
2848
2858
</aside>
2849
2859
2850
-
The <dfn attribute for=IDBObjectStore>indexNames</dfn> getter steps are to
2851
-
return a new {{DOMStringList}} associated with a [=sorted name list=] of the [=index/names=]
2852
-
of [=/indexes=] in [=/this=]'s [=index set=].
2860
+
<div algorithm>
2861
+
The <dfn attribute for=IDBObjectStore>indexNames</dfn> getter steps are:
2862
+
2863
+
1. Let |names| be a [=/list=] of the [=index/names=] of the [=/indexes=] in [=/this=]'s [=index set=].
2864
+
1. Return the result (a {{DOMStringList}}) of [=/creating a sorted name list=] with |names|.
2865
+
2866
+
</div>
2867
+
2853
2868
2854
2869
<details class=note>
2855
2870
<summary>
@@ -4775,7 +4790,10 @@ enum IDBTransactionMode {
4775
4790
4776
4791
<div algorithm>
4777
4792
4778
-
The <dfn attribute for=IDBTransaction>objectStoreNames</dfn> getter steps are to return a new {{DOMStringList}} associated with a [=sorted name list=] of the [=object-store/names=] of the [=/object stores=] in [=/this=]'s [=transaction/scope=].
4793
+
The <dfn attribute for=IDBTransaction>objectStoreNames</dfn> getter steps are:
4794
+
4795
+
1. Let |names| be a [=/list=] of the [=object-store/names=] of the [=/object stores=] in [=/this=]'s [=transaction/scope=].
4796
+
1. Return the result (a {{DOMStringList}}) of [=/creating a sorted name list=] with |names|.
4779
4797
4780
4798
</div>
4781
4799
@@ -6782,6 +6800,7 @@ For the revision history of the second edition, see [that document's Revision Hi
6782
6800
* Added {{IDBTransactionOptions/durability}} option and {{IDBTransaction/durability}} attribute. ([Issue #50](https://github.com/w3c/IndexedDB/issues/50))
6783
6801
* Specified [[#transaction-scheduling]] more precisely and disallow starting read/write transactions while read-only transactions with overlapping scope are running. ([Issue #253](https://github.com/w3c/IndexedDB/issues/253))
0 commit comments