From 33c65595616010e3e111dd47a21cfcc41c64d3ed Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 11 Oct 2022 12:24:57 +0200 Subject: [PATCH] LibWeb: Add spec link for DOM::Document::m_selection --- Userland/Libraries/LibWeb/DOM/Document.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/DOM/Document.h b/Userland/Libraries/LibWeb/DOM/Document.h index 3633815d04..0f3dc74644 100644 --- a/Userland/Libraries/LibWeb/DOM/Document.h +++ b/Userland/Libraries/LibWeb/DOM/Document.h @@ -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 m_selection; };