ssia
Created attachment 448134 [details] Patch
Comment on attachment 448134 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=448134&action=review > Source/WebCore/layout/formattingContexts/inline/display/InlineDisplayBox.h:81 > - bool isText() const { return m_type == Type::Text; } > + bool isText() const { return m_type == Type::Text || isWordSeparator(); } > + bool isWordSeparator() const { return m_type == Type::WordSeparator; } Why do we need display boxes for these? What should we do with them during painting/hit testing?
Oh I see, isText() still return true so they get treated as text boxes.
Committed r287500 (245635@main): <https://commits.webkit.org/245635@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 448134 [details].
<rdar://problem/87040223>