.
Created attachment 426735 [details] Patch
Committed r276397 (236872@main): <https://commits.webkit.org/236872@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 426735 [details].
Comment on attachment 426735 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=426735&action=review > Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm:1076 > + for (size_t i = 0; i < quads.size(); ++i) > + quads[i] = view->contentsToRootView(quads[i]); range-based for loop here: for (auto& quad : quads) quad = ->contentsToRootView(quad);
Reopening to attach new patch.
Created attachment 426870 [details] Followup tweak
<rdar://problem/77048060>
Committed r276480 (236939@main): <https://commits.webkit.org/236939@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 426870 [details].