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
Right now this logs a CSSStyleSheet object and then null in every browser:
<!doctype html><style>div { color: green }</style><script>lets=document.querySelector('style');console.log(s.sheet);// [CSSStyleSheet]s.remove();console.log(s.sheet);// null</script>
This should be in the spec. Similarly when rel attribute changes and such. Also when the element becomes disconnected, per the discussion in w3c/csswg-drafts#3096.
The text was updated successfully, but these errors were encountered:
Right now this logs a
CSSStyleSheet
object and thennull
in every browser:This should be in the spec. Similarly when
rel
attribute changes and such. Also when the element becomes disconnected, per the discussion in w3c/csswg-drafts#3096.The text was updated successfully, but these errors were encountered: