From 9a0af789943ced678d11e78599e8a78465869fcc Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Thu, 9 Jul 2026 15:16:52 +1000 Subject: [PATCH 1/3] Docs: TINYDOC-3528 - The cursor could be placed at the start of a list item instead of the clicked position --- modules/ROOT/pages/8.8.0-release-notes.adoc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/ROOT/pages/8.8.0-release-notes.adoc b/modules/ROOT/pages/8.8.0-release-notes.adoc index 8f2fdad0d0..1b79ccee63 100644 --- a/modules/ROOT/pages/8.8.0-release-notes.adoc +++ b/modules/ROOT/pages/8.8.0-release-notes.adoc @@ -160,6 +160,13 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a // CCFR here. +=== The cursor could be placed at the start of a list item instead of the clicked position +// #TINYMCE-14490 + +Previously, in Chromium-based browsers such as Chrome and Edge, clicking to the right of a line inside certain list items could place the cursor at the start of the item rather than at the clicked position. This edge case affected list items that contained a nested list, along with any list items created from them, making it difficult to position the cursor accurately. + +In {productname} {release-version}, {productname} detects this browser behavior and corrects the cursor position. Clicking within these list items now places the cursor at the clicked position. + [[security-fixes]] == Security fixes From 702f81813cf28e3fee555fdf023a89e9bb5e0698 Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Thu, 9 Jul 2026 16:49:47 +1000 Subject: [PATCH 2/3] Docs: TINYDOC-3528 - Link the upstream Chromium issue in the list-item cursor fix note --- modules/ROOT/pages/8.8.0-release-notes.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/8.8.0-release-notes.adoc b/modules/ROOT/pages/8.8.0-release-notes.adoc index 1b79ccee63..cba328c21c 100644 --- a/modules/ROOT/pages/8.8.0-release-notes.adoc +++ b/modules/ROOT/pages/8.8.0-release-notes.adoc @@ -163,7 +163,7 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a === The cursor could be placed at the start of a list item instead of the clicked position // #TINYMCE-14490 -Previously, in Chromium-based browsers such as Chrome and Edge, clicking to the right of a line inside certain list items could place the cursor at the start of the item rather than at the clicked position. This edge case affected list items that contained a nested list, along with any list items created from them, making it difficult to position the cursor accurately. +Previously, in Chromium-based browsers such as Chrome and Edge, clicking to the right of a line inside certain list items could place the cursor at the start of the item rather than at the clicked position. This edge case affected list items that contained a nested list, along with any list items created from them, making it difficult to position the cursor accurately. This behavior originates from a known link:https://issues.chromium.org/issues/40767343[Chromium browser issue]. In {productname} {release-version}, {productname} detects this browser behavior and corrects the cursor position. Clicking within these list items now places the cursor at the clicked position. From 01b8c3ed7e04b3b30d6583afeefedb69dfd5c122 Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Tue, 14 Jul 2026 12:58:59 +1000 Subject: [PATCH 3/3] Docs: TINYDOC-3528 - Clarify the list item cursor bug affects clicks after the text ends --- modules/ROOT/pages/8.8.0-release-notes.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/8.8.0-release-notes.adoc b/modules/ROOT/pages/8.8.0-release-notes.adoc index cba328c21c..ef37e52b56 100644 --- a/modules/ROOT/pages/8.8.0-release-notes.adoc +++ b/modules/ROOT/pages/8.8.0-release-notes.adoc @@ -163,9 +163,9 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a === The cursor could be placed at the start of a list item instead of the clicked position // #TINYMCE-14490 -Previously, in Chromium-based browsers such as Chrome and Edge, clicking to the right of a line inside certain list items could place the cursor at the start of the item rather than at the clicked position. This edge case affected list items that contained a nested list, along with any list items created from them, making it difficult to position the cursor accurately. This behavior originates from a known link:https://issues.chromium.org/issues/40767343[Chromium browser issue]. +Previously, in Chromium-based browsers such as Chrome and Edge, clicking within a list item after the end of its text — for example, in the empty space to the right of the line — could place the cursor at the start of the item instead of at the end of the line. Clicking directly within a list item's text was not affected. This behavior originates from a known link:https://issues.chromium.org/issues/40767343[Chromium browser issue]. -In {productname} {release-version}, {productname} detects this browser behavior and corrects the cursor position. Clicking within these list items now places the cursor at the clicked position. +In {productname} {release-version}, {productname} detects this browser behavior and corrects the cursor position. Clicking within these list items now places the cursor at the expected position. [[security-fixes]]