find out what happens when hydrating a minified SSRd element
Might be a use case if html minification is used in production.
imagine a ssr'd html like:
<my-element><div>${this.foo}</div><div>${this.bar}</div></my-element>
vs.:
<my-element>
<div>${this.foo}</div>
<div>${this.bar}</div>
</my-element>
will hydration work ?
when we crash .. how hard will we crash ?