Re: [csswg-drafts] [css-cascade] About omitted subproperty value in shorthand

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 account

Received on Friday, 3 March 2017 00:12:15 UTC