Implement FormData decoding using KeyedDecoder
Created attachment 230706 [details] Patch
Comment on attachment 230706 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=230706&action=review > Source/WebCore/platform/network/FormData.cpp:679 > + if (!decoder.decodeObjects("elements", data->m_elements, [](KeyedDecoder& decoder, FormDataElement& element) { > + return decodeElement(decoder, element); > + })) > + return nullptr; I will note that this looks pretty bizarre.
Committed r168199: <http://trac.webkit.org/changeset/168199>