A probably more interesting one: ```html <!DOCTYPE html> <div style="background: none, none"></div> <script> var elem = document.querySelector('div'); alert(elem.style.cssText); elem.style.backgroundPosition = elem.style.backgroundPosition; alert(elem.style.cssText); elem.style.cssText = elem.style.cssText; alert(elem.style.cssText); </script> ``` This has different behavior between Chrome and Safari, and they both fail to round-trip in this case. Their three output of `cssText` are completely different. -- GitHub Notification of comment by upsuper Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1068#issuecomment-283824499 using your GitHub accountReceived on Friday, 3 March 2017 00:12:15 UTC
This archive was generated by hypermail 2.4.0 : Thursday, 24 March 2022 20:26:38 UTC