salesforce / lwc-test

LWC plugins and utilities for testing
MIT License
43 stars 29 forks source link

fix(serializer): normalize style attributes #237

Closed jmsjtu closed 3 months ago

jmsjtu commented 3 months ago

Split into two commits to make the changes more obvious.

See #236 for class changes.

BREAKING CHANGE: snapshots may change.

W-15365974

nolanlawson commented 3 months ago

This doesn't work well for cases like this:

<div style="background-image: url(data: image/svg+xml;base64,abc123); background-size: 12px;"></div>

This incorrectly handles the ;s, serializing into:

<div
     style="background-image: url(data: image/svg+xml; base64,abc123); background-size: 12px;"
/>