You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{!-- app/templates/components/example-thing.hbs --}}<style>{{exampleCss}}</style>
<divclass='test'>
<spanclass='thing'>hi hi hi</span>
</div>
(then of course render this component in your index template or application layout)
Expected:
The div .thing should have text 'hi hi hi' and red background, even with js turned off.
Actual:
The div .thing has a red background with js turned on (after app has initialized in the browser) but no red background with js turned off. The CSS selector gets escaped by fastboot (transforming > into >) while it does not get escaped by ember-in-the-browser.
The text was updated successfully, but these errors were encountered:
Reproduction:
(then of course render this component in your index template or application layout)
Expected:
The div
.thing
should have text 'hi hi hi' and red background, even with js turned off.Actual:
The div
.thing
has a red background with js turned on (after app has initialized in the browser) but no red background with js turned off. The CSS selector gets escaped by fastboot (transforming>
into>
) while it does not get escaped by ember-in-the-browser.The text was updated successfully, but these errors were encountered: