New comment by 0xN1K on void-packages repository https://github.com/void-linux/void-packages/pull/47351#issuecomment-1823253598 Comment: JFYI: https://seclists.org/oss-sec/2023/q4/132. There is a patch there though I think that change should be optional: ```diff --- a/layout/generic/nsFrameSelection.cpp Fri Oct 06 12:03:17 2023 +0000 +++ b/layout/generic/nsFrameSelection.cpp Sun Oct 08 11:04:41 2023 +0300 @@ -3345,6 +3345,10 @@ return; // Don't care if we are still dragging. } + if (aReason & nsISelectionListener::JS_REASON) { + return; + } + if (!aDocument || aSelection.IsCollapsed()) { #ifdef DEBUG_CLIPBOARD fprintf(stderr, "CLIPBOARD: no selection/collapsed selection\n"); ```