lwc icon indicating copy to clipboard operation
lwc copied to clipboard

Empty MathML namespace elements are not generated as self closing in engine-server

Open jhefferman-sfdc opened this issue 1 year ago • 1 comments

Description

Steps to Reproduce

Render the following markup using @lwc/engine-server:

<math>
   <plus></plus>
   <plus/>
</math>

Expected Results

The void plus elements should be rendered as self closing

<math>
   <plus/>
   <plus/>
</math>

Actual Results

The void plus elements are rendered with closing tags

<math>
   <plus></plus>
   <plus></plus>
</math>

jhefferman-sfdc avatar Dec 06 '24 15:12 jhefferman-sfdc

This issue has been linked to a new work item: W-17395920

git2gus[bot] avatar Dec 09 '24 15:12 git2gus[bot]