From ad6384d536ad1f9c7272ea580506e8227c917488 Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Mon, 30 Jun 2025 12:47:08 +1000 Subject: [PATCH 1/2] DOC-3147: Strikethrough format could be added outside font size format, which renders incorrectly in some browsers. --- modules/ROOT/pages/8.0-release-notes.adoc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/ROOT/pages/8.0-release-notes.adoc b/modules/ROOT/pages/8.0-release-notes.adoc index 7c62f25b54..c6fd86527c 100644 --- a/modules/ROOT/pages/8.0-release-notes.adoc +++ b/modules/ROOT/pages/8.0-release-notes.adoc @@ -148,6 +148,13 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a // CCFR here. +=== Strikethrough format could be added outside font size format, which renders incorrectly in some browsers. +// #TINY-12004 + +Previously, there was an issue where combining strikethrough (`s` element) and font size formatting could lead to incorrect rendering in some browsers, particularly Chrome. This occurred when the `s` (strikethrough) element was placed outside a font size span, causing the strikethrough line to render incorrectly. + +The fix ensures that the `s` element is now properly nested inside the font size element, improving visual consistency across browsers. + [[security-fixes]] == Security fixes From b0c83adce0fbc3dafb53d6b46e5cd07a08ebff85 Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Mon, 14 Jul 2025 13:02:50 +1000 Subject: [PATCH 2/2] Update modules/ROOT/pages/8.0-release-notes.adoc Co-authored-by: CODE:AG <57781325+abhinavgandham@users.noreply.github.com> --- modules/ROOT/pages/8.0-release-notes.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/8.0-release-notes.adoc b/modules/ROOT/pages/8.0-release-notes.adoc index c6fd86527c..0c0d489176 100644 --- a/modules/ROOT/pages/8.0-release-notes.adoc +++ b/modules/ROOT/pages/8.0-release-notes.adoc @@ -151,7 +151,7 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a === Strikethrough format could be added outside font size format, which renders incorrectly in some browsers. // #TINY-12004 -Previously, there was an issue where combining strikethrough (`s` element) and font size formatting could lead to incorrect rendering in some browsers, particularly Chrome. This occurred when the `s` (strikethrough) element was placed outside a font size span, causing the strikethrough line to render incorrectly. +Previously, there was an issue where combining strikethrough (`s` element) and font size formatting could lead to incorrect rendering in some browsers, particularly Chrome. This occurred when the `s` (strikethrough) element was placed outside a font size `span`, causing the strikethrough line to render incorrectly. The fix ensures that the `s` element is now properly nested inside the font size element, improving visual consistency across browsers.