Index: Source/core/frame/FrameView.cpp |
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp |
index a5991c617e53526b6680d0eb7d31ac7b598f247f..ab6a105a6ddf21ebe29862ca8789586ab60ee939 100644 |
--- a/Source/core/frame/FrameView.cpp |
+++ b/Source/core/frame/FrameView.cpp |
@@ -4031,11 +4031,6 @@ LayoutObject* FrameView::viewportLayoutObject() |
void FrameView::collectAnnotatedRegions(LayoutObject& layoutObject, Vector<AnnotatedRegionValue>& regions) |
{ |
- // LayoutTexts don't have their own style, they just use their parent's style, |
- // so we don't want to include them. |
- if (layoutObject.isText()) |
- return; |
- |
layoutObject.addAnnotatedRegions(regions); |
for (LayoutObject* curr = layoutObject.slowFirstChild(); curr; curr = curr->nextSibling()) |
collectAnnotatedRegions(*curr, regions); |