| Index: Source/core/page/TouchDisambiguation.cpp
|
| diff --git a/Source/core/page/TouchDisambiguation.cpp b/Source/core/page/TouchDisambiguation.cpp
|
| index 1d6f10f1b3094d587d991cdb659e2b50fa896542..62ca0754e21c90280dc39eeadbed9dd29356f313 100644
|
| --- a/Source/core/page/TouchDisambiguation.cpp
|
| +++ b/Source/core/page/TouchDisambiguation.cpp
|
| @@ -104,7 +104,7 @@ void findGoodTouchTargets(const IntRect& touchBox, LocalFrame* mainFrame, Vector
|
| WillBeHeapHashSet<RawPtrWillBeMember<Node>> blackList;
|
| for (const auto& hitResult : hitResults) {
|
| // Ignore any Nodes that can't be clicked on.
|
| - RenderObject* renderer = hitResult.get()->renderer();
|
| + LayoutObject* renderer = hitResult.get()->renderer();
|
| if (!renderer || !hitResult.get()->willRespondToMouseClickEvents())
|
| continue;
|
|
|
|
|