...
Created attachment 453792 [details] Patch
Created attachment 453798 [details] Patch
Comment on attachment 453798 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=453798&action=review r=me with improvement suggestion > Source/WebCore/bindings/js/IDBBindingUtilities.cpp:506 > + indexKeys.add(entry.key, indexKey.isolatedCopy()); I recommend `WTFMove(indexKey).isolatedCopy()`. A lot of types (like String) have special optimizations when isolatedCopy() is called on a r-value expression.
(In reply to Chris Dumez from comment #3) > Comment on attachment 453798 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=453798&action=review > > r=me with improvement suggestion > > > Source/WebCore/bindings/js/IDBBindingUtilities.cpp:506 > > + indexKeys.add(entry.key, indexKey.isolatedCopy()); > > I recommend `WTFMove(indexKey).isolatedCopy()`. A lot of types (like String) > have special optimizations when isolatedCopy() is called on a r-value > expression. Sure, will change.
Created attachment 453848 [details] Patch for landing
Committed r290836 (248072@main): <https://commits.webkit.org/248072@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 453848 [details].
<rdar://problem/89820257>