Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
jhefferman-sfdc opened this issue Dec 6, 2024 · 1 comment
Labels
hydration Having to do with hydration after SSR tests Up for grabs Issues that are relatively small, self-contained, and ready for implementation USER STORY

Comments

@jhefferman-sfdc
Copy link
Contributor

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 jhefferman-sfdc added USER STORY tests Up for grabs Issues that are relatively small, self-contained, and ready for implementation hydration Having to do with hydration after SSR labels Dec 9, 2024
Copy link

git2gus bot commented Dec 9, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
hydration Having to do with hydration after SSR tests Up for grabs Issues that are relatively small, self-contained, and ready for implementation USER STORY
Projects
None yet
Development

No branches or pull requests

1 participant