Changeset 279683 in webkit
- Timestamp:
- Jul 7, 2021 4:00:36 PM (13 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_keyPath.any-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_keyPath.any.worker-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/Modules/indexeddb/IDBObjectStore.idl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r279681 r279683 1 2021-07-07 Chris Dumez <cdumez@apple.com> 2 3 IDBObjectStore.keyPath should keep returning the same object 4 https://bugs.webkit.org/show_bug.cgi?id=227770 5 6 Reviewed by Darin Adler. 7 8 Rebaseline WPT tests that are now passing. 9 10 * web-platform-tests/IndexedDB/idbobjectstore_keyPath.any-expected.txt: 11 * web-platform-tests/IndexedDB/idbobjectstore_keyPath.any.worker-expected.txt: 12 1 13 2021-07-07 Alex Christensen <achristensen@webkit.org> 2 14 -
trunk/LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_keyPath.any-expected.txt
r250347 r279683 1 1 2 FAIL IDBObjectStore's keyPath attribute returns the same object. assert_equals: Same object instance is returned each time keyPath is inspected expected ["a", "b"] but got ["a", "b"] 2 PASS IDBObjectStore's keyPath attribute returns the same object. 3 3 -
trunk/LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_keyPath.any.worker-expected.txt
r250347 r279683 1 1 2 FAIL IDBObjectStore's keyPath attribute returns the same object. assert_equals: Same object instance is returned each time keyPath is inspected expected ["a", "b"] but got ["a", "b"] 2 PASS IDBObjectStore's keyPath attribute returns the same object. 3 3 -
trunk/Source/WebCore/ChangeLog
r279682 r279683 1 2021-07-07 Chris Dumez <cdumez@apple.com> 2 3 IDBObjectStore.keyPath should keep returning the same object 4 https://bugs.webkit.org/show_bug.cgi?id=227770 5 6 Reviewed by Darin Adler. 7 8 IDBObjectStore.keyPath should keep returning the same object to match other 9 browser engines (Gecko and Blink). 10 11 No new tests, rebaselined existing tests. 12 13 * Modules/indexeddb/IDBObjectStore.idl: 14 1 15 2021-07-07 Yoshiaki Jitsukawa <yoshiaki.jitsukawa@sony.com> 2 16 -
trunk/Source/WebCore/Modules/indexeddb/IDBObjectStore.idl
r275151 r279683 36 36 ] interface IDBObjectStore { 37 37 attribute DOMString name; 38 readonly attribute IDBKeyPath? keyPath;38 [SameObject, CachedAttribute] readonly attribute IDBKeyPath? keyPath; 39 39 readonly attribute DOMStringList indexNames; 40 40 [SameObject] readonly attribute IDBTransaction transaction;
Note: See TracChangeset
for help on using the changeset viewer.