Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 926106daaf9a833fc5644d646c7e179ce35e4cea
      
https://github.com/WebKit/WebKit/commit/926106daaf9a833fc5644d646c7e179ce35e4cea
  Author: Rupin Mittal <[email protected]>
  Date:   2026-03-25 (Wed, 25 Mar 2026)

  Changed paths:
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll-options.any-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll-options.any.serviceworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll-options.any.sharedworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll-options.any.worker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys-options.any-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys-options.any.serviceworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys-options.any.sharedworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys-options.any.worker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllRecords.any-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllRecords.any.serviceworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllRecords.any.sharedworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllRecords.any.worker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idlharness.any-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idlharness.any.serviceworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idlharness.any.sharedworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idlharness.any.worker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/key-conversion-exceptions.any-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/key-conversion-exceptions.any.serviceworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/key-conversion-exceptions.any.sharedworker-expected.txt
    M 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/key-conversion-exceptions.any.worker-expected.txt
    M Source/WebCore/Modules/indexeddb/IDBObjectStore.cpp
    M Source/WebCore/Modules/indexeddb/IDBObjectStore.h
    M Source/WebCore/Modules/indexeddb/IDBObjectStore.idl

  Log Message:
  -----------
  [IndexedDB API] Add IDL and stub for IDBObjectStore::getAllRecords()
https://bugs.webkit.org/show_bug.cgi?id=310703
rdar://173312729

Reviewed by Brady Eidson.

This adds the IDL for IDBObjecStore::getAllRecords() and a stub that returns a
NotSupportedError. It is gated behind a new feature flag 
IndexedDBGetAllRecordsEnabled.

The implementation will come in future patches.

* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll-options.any-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll-options.any.serviceworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll-options.any.sharedworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll-options.any.worker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys-options.any-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys-options.any.serviceworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys-options.any.sharedworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys-options.any.worker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllRecords.any-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllRecords.any.serviceworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllRecords.any.sharedworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllRecords.any.worker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idlharness.any-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idlharness.any.serviceworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idlharness.any.sharedworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idlharness.any.worker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/key-conversion-exceptions.any-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/key-conversion-exceptions.any.serviceworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/key-conversion-exceptions.any.sharedworker-expected.txt:
* 
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/key-conversion-exceptions.any.worker-expected.txt:
* Source/WebCore/Modules/indexeddb/IDBObjectStore.cpp:
(WebCore::IDBObjectStore::getAllRecords):
* Source/WebCore/Modules/indexeddb/IDBObjectStore.h:
* Source/WebCore/Modules/indexeddb/IDBObjectStore.idl:

Canonical link: https://commits.webkit.org/309950@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications

Reply via email to