1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:58:11 +00:00

LibHTML: Document::detach_from_frame() should actually detach

This commit is contained in:
Andreas Kling 2019-10-09 21:52:38 +02:00
parent 159507f2a6
commit a259832266

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