RESOLVED FIXED 157718
RenderLayer::hitTestList could mutate the list of candidate layers.
https://bugs.webkit.org/show_bug.cgi?id=157718
Summary RenderLayer::hitTestList could mutate the list of candidate layers.
zalan
Reported 2016-05-14 18:43:47 PDT
while looping through the list of layers. RenderLayer::hitTestList() ... for (size_t i = list->size(); i > 0; --i) { RenderLayer* childLayer = list->at(i - 1); hitLayer = childLayer->hitTestLayer(rootLayer, this, request, tempResult, hitTestRect, hitTestLocation, false, transformState, zOffsetForDescendants); !!! list items could be invalid at this point. }
Attachments
WIP patch (7.23 KB, patch)
2016-05-14 18:49 PDT, zalan
no flags
WIP patch (7.18 KB, patch)
2016-05-14 19:28 PDT, zalan
no flags
Archive of layout-test-results from ews113 for mac-yosemite (1.26 MB, application/zip)
2016-05-14 20:19 PDT, Build Bot
no flags
Patch (9.07 KB, patch)
2016-05-15 05:16 PDT, zalan
no flags
Patch (1.62 KB, patch)
2016-05-16 13:34 PDT, zalan
no flags
zalan
Comment 1 2016-05-14 18:44:12 PDT
zalan
Comment 2 2016-05-14 18:49:26 PDT
Created attachment 278952 [details] WIP patch Not sure whether we should return nullptr or resultLayer. and whether the mutate check should happen at the end of the loop so that we could still return the current layer if it is the hittest candidate even if while hit testing it, the list got mutated.
WebKit Commit Bot
Comment 3 2016-05-14 19:12:09 PDT
Attachment 278952 [details] did not pass style-queue: ERROR: Source/WebCore/rendering/RenderLayer.cpp:5390: A case label should not be indented, but line up with its switch statement. [whitespace/indent] [4] ERROR: Source/WebCore/rendering/RenderLayer.cpp:5389: Missing space before ( in switch( [whitespace/parens] [5] ERROR: Source/WebCore/rendering/RenderLayer.h:823: The parameter name "request" adds no information, so it should be removed. [readability/parameter_name] [5] ERROR: Source/WebCore/rendering/RenderLayer.h:823: The parameter name "result" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 4 in 2 files If any of these errors are false positives, please file a bug against check-webkit-style.
zalan
Comment 4 2016-05-14 19:28:59 PDT
Created attachment 278953 [details] WIP patch
Build Bot
Comment 5 2016-05-14 20:19:34 PDT
Comment on attachment 278953 [details] WIP patch Attachment 278953 [details] did not pass mac-debug-ews (mac): Output: http://webkit-queues.webkit.org/results/1323073 Number of test failures exceeded the failure limit.
Build Bot
Comment 6 2016-05-14 20:19:38 PDT
Created attachment 278954 [details] Archive of layout-test-results from ews113 for mac-yosemite The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews113 Port: mac-yosemite Platform: Mac OS X 10.10.5
zalan
Comment 7 2016-05-15 05:16:56 PDT
zalan
Comment 8 2016-05-16 13:34:35 PDT
WebKit Commit Bot
Comment 9 2016-05-16 14:59:34 PDT
Comment on attachment 279039 [details] Patch Clearing flags on attachment: 279039 Committed r200971: <http://trac.webkit.org/changeset/200971>
WebKit Commit Bot
Comment 10 2016-05-16 14:59:40 PDT
All reviewed patches have been landed. Closing bug.
Darin Adler
Comment 11 2016-05-23 13:19:44 PDT
Comment on attachment 279039 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=279039&action=review > Source/WebCore/page/EventHandler.cpp:1141 > + // We should always start hittesting a clean tree. > + renderView->document().updateLayoutIgnorePendingStylesheets(); Seems safer to do this earlier, before calling contentRenderer(). Probably even before making the HitTestResult. Also, “hit testing” is two words.
Note You need to log in before you can comment on or make changes to this bug.