LibHTML: Document::detach_from_frame() should actually detach

This commit is contained in:
Andreas Kling 2019-10-09 21:52:38 +02:00
commit a259832266
Notes: sideshowbarker 2024-07-19 11:44:33 +09:00

View file

@ -84,6 +84,7 @@ void Document::attach_to_frame(Badge<Frame>, Frame& frame)
void Document::detach_from_frame(Badge<Frame>, Frame&)
{
m_frame = nullptr;
}
Color Document::background_color() const