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

LibWeb: Add spec link for DOM::Document::m_selection

This commit is contained in:
Andreas Kling 2022-10-11 12:24:57 +02:00
parent 5ab501c92f
commit 33c6559561

View file

@ -596,6 +596,7 @@ private:
// https://html.spec.whatwg.org/multipage/dom.html#previous-document-unload-timing
DocumentUnloadTimingInfo m_previous_document_unload_timing;
// https://w3c.github.io/selection-api/#dfn-selection
JS::GCPtr<Selection::Selection> m_selection;
};