[Webkit-unassigned] [Bug 281325] ep.gov.pk: <marquee> is hidden behind <div>
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Nov 6 20:03:09 PST 2024
https://bugs.webkit.org/show_bug.cgi?id=281325
--- Comment #4 from Karl Dubost <karlcow at apple.com> ---
Marquee element is defined in https://searchfox.org/wubkat/source/Source/WebCore/html/HTMLMarqueeElement.cpp
with the Render being
https://searchfox.org/wubkat/rev/d45649fa32a499702c30474e94bd6843c4c67849/Source/WebCore/html/HTMLMarqueeElement.cpp#209-217
RenderMarquee* HTMLMarqueeElement::renderMarquee() const
{
if (!renderer() || !renderer()->hasLayer())
return nullptr;
auto* scrollableArea = renderBoxModelObject()->layer()->scrollableArea();
if (!scrollableArea)
return nullptr;
return scrollableArea->marquee();
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20241107/bfa3e68d/attachment.htm>
More information about the webkit-unassigned
mailing list