border-style: solid; Removed from <td> Elements When Saving Content in Drupal 10.4.3

Created on 26 February 2025, about 1 month ago

Issue Title:

border-style: solid; Removed from &lt;td&gt; Elements When Saving Content in Drupal 10.4.3

Issue Summary

When saving content in Drupal 10.4.3 that includes a &lt;table&gt; with explicitly set border-style: solid; for &lt;td&gt; elements, the border-style property gets removed, leaving only border-color and border-width. This modifies the intended table styling.

Steps to Reproduce

  1. Create a new piece of content with the following HTML inside the editor:
<table style="border:2px solid hsl(0, 0%, 0%);">
    <tbody>
        <tr>
            <td style="border:2px solid hsl(0, 0%, 0%);">1</td>
            <td style="border:2px solid hsl(0, 0%, 0%);">2</td>
        </tr>
        <tr>
            <td style="border:2px solid hsl(0, 0%, 0%);">3</td>
            <td style="border:2px solid hsl(0, 0%, 0%);">4</td>
        </tr>
    </tbody>
</table>

  1. Save the content.
  2. Inspect the output in the source code.

Expected Behavior

The td elements should retain the border:2px solid hsl(0, 0%, 0%); as specified.

Actual Behavior

The border-style: solid; is removed, and the output becomes:

<table style="border:2px solid hsl(0, 0%, 0%);">
    <tbody>
        <tr>
            <td style="border-color:hsl(0, 0%, 0%);border-width:2px;">1</td>
            <td style="border-color:hsl(0, 0%, 0%);border-width:2px;">2</td>
        </tr>
        <tr>
            <td style="border-color:hsl(0, 0%, 0%);border-width:2px;">3</td>
            <td style="border-color:hsl(0, 0%, 0%);border-width:2px;">4</td>
        </tr>
    </tbody>
</table>

This results in the table appearing incorrectly, as browsers typically do not render borders without an explicit border-style.

Additional Information

  • td and th elements are allowed to have border-style in standard HTML and CSS.
  • This issue could be caused by a filter, editor processing, or a bug in Drupalโ€™s rendering mech
๐Ÿ’ฌ Support request
Status

Active

Version

10.4 โœจ

Component

ckeditor5.module

Created by

๐Ÿ‡ฏ๐Ÿ‡ตJapan ytsuhako

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024