Changeset 279669 in webkit
- Timestamp:
- Jul 7, 2021 2:12:29 PM (13 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbindex_keyPath.any-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbindex_keyPath.any.worker-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/Modules/indexeddb/IDBIndex.idl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r279666 r279669 1 2021-07-07 Chris Dumez <cdumez@apple.com> 2 3 IDBIndex.keyPath should keep returning the same object 4 https://bugs.webkit.org/show_bug.cgi?id=227758 5 6 Reviewed by Geoffrey Garen. 7 8 Rebaseline WPT tests that are now passing. 9 10 * web-platform-tests/IndexedDB/idbindex_keyPath.any-expected.txt: 11 * web-platform-tests/IndexedDB/idbindex_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/idbindex_keyPath.any-expected.txt
r250347 r279669 1 1 2 FAIL IDBIndex'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 IDBIndex's keyPath attribute returns the same object. 3 3 -
trunk/LayoutTests/imported/w3c/web-platform-tests/IndexedDB/idbindex_keyPath.any.worker-expected.txt
r250347 r279669 1 1 2 FAIL IDBIndex'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 IDBIndex's keyPath attribute returns the same object. 3 3 -
trunk/Source/WebCore/ChangeLog
r279666 r279669 1 2021-07-07 Chris Dumez <cdumez@apple.com> 2 3 IDBIndex.keyPath should keep returning the same object 4 https://bugs.webkit.org/show_bug.cgi?id=227758 5 6 Reviewed by Geoffrey Garen. 7 8 IDBIndex.keyPath should keep returning the same object to match other browser 9 engines (Gecko and Blink). 10 11 No new tests, rebaselined existing tests. 12 13 * Modules/indexeddb/IDBIndex.idl: 14 1 15 2021-07-07 Alex Christensen <achristensen@webkit.org> 2 16 -
trunk/Source/WebCore/Modules/indexeddb/IDBIndex.idl
r275151 r279669 37 37 attribute DOMString name; 38 38 [SameObject] readonly attribute IDBObjectStore objectStore; 39 readonly attribute IDBKeyPath?keyPath;39 [SameObject, CachedAttribute] readonly attribute IDBKeyPath keyPath; 40 40 readonly attribute boolean multiEntry; 41 41 readonly attribute boolean unique;
Note: See TracChangeset
for help on using the changeset viewer.