Re: [csswg-drafts] [cssom] Serialization of CSS declaration block returned from getComputedStyle

We've similar issues in CSS Grid Layout spec.
This was an old mail to `www-style`: 
https://lists.w3.org/Archives/Public/www-style/2015Jul/0242.html

A very basic example:
```js
myGrid.style.grid = "100px / 50px";
console.log("style: " + myGrid.style.grid);
console.log("computedStyle: " + getComputedStyle(myGrid).grid);
```

The output right now in Chrome is:
```
style:
computedStyle: 100px / 50px / none / row / auto / auto / 0px / 0px
```

And in Firefox:
```
style: 100px / 50px;
computedStyle:
```



-- 
GitHub Notification of comment by mrego
Please view or discuss this issue at 
https://github.com/w3c/csswg-drafts/issues/1033#issuecomment-279704031
 using your GitHub account

Received on Tuesday, 14 February 2017 13:16:01 UTC