mirror of https://github.com/sveltejs/svelte
feat: support migration of self closing tags (#13479)
parent
073ef17028
commit
a51b3df4aa
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
feat: support migration of self closing tags
|
@ -0,0 +1,5 @@
|
|||||||
|
<div />
|
||||||
|
<div title="preserve" />
|
||||||
|
<input type="text" />
|
||||||
|
<hr />
|
||||||
|
<f:table />
|
@ -0,0 +1,5 @@
|
|||||||
|
<div></div>
|
||||||
|
<div title="preserve"></div>
|
||||||
|
<input type="text" />
|
||||||
|
<hr />
|
||||||
|
<f:table></f:table>
|
Loading…
Reference in new issue