summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/Document.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-10-11 12:24:57 +0200
committerAndreas Kling <kling@serenityos.org>2022-10-11 21:49:48 +0200
commit33c65595616010e3e111dd47a21cfcc41c64d3ed (patch)
tree1a778847d98a5ca01d4f6cbeb61c54aa28adfd91 /Userland/Libraries/LibWeb/DOM/Document.h
parent5ab501c92fc22845ef45f55d4461ace99bc1e4b2 (diff)
downloadserenity-33c65595616010e3e111dd47a21cfcc41c64d3ed.zip
LibWeb: Add spec link for DOM::Document::m_selection
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM/Document.h')
-rw-r--r--Userland/Libraries/LibWeb/DOM/Document.h1
1 files changed, 1 insertions, 0 deletions
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<Selection::Selection> m_selection;
};