1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:17:45 +00:00

LibWeb: Make CSS::Screen forward its ref count to DOM::Window

This commit is contained in:
Andreas Kling 2021-12-09 15:47:48 +01:00
parent 7fc770cfac
commit c268d0fa13
4 changed files with 12 additions and 10 deletions

View file

@ -111,7 +111,7 @@ Window::Window(Document& document)
, m_associated_document(document)
, m_performance(make<HighResolutionTime::Performance>(*this))
, m_crypto(Crypto::Crypto::create())
, m_screen(CSS::Screen::create(*this))
, m_screen(CSS::Screen::create({}, *this))
{
}