Bug Report
Prerequisites
For more information, see the CONTRIBUTING guide.
Description
Grid area is converted to wrong css
Steps to Reproduce
Try this snippet:
var source = "#nav-header {grid-area: navheader; }";
var css = ParseStyleSheet(source);
var text = css.Rules[0].CssText;
Expected behavior: [What you expected to happen]
I expect the text to be the same as in source (or nearly)
Actual behavior: [What actually happened]
the text look like this:
#nav-header { grid-area: navheader / navheader / auto / auto }
problem is, this text renders the html differently then the original one (at least in chrome)
Bug Report
Prerequisites
AngleSharp.Cssfor CSS support)For more information, see the
CONTRIBUTINGguide.Description
Grid area is converted to wrong css
Steps to Reproduce
Try this snippet:
Expected behavior: [What you expected to happen]
I expect the text to be the same as in source (or nearly)
Actual behavior: [What actually happened]
the text look like this:
problem is, this text renders the html differently then the original one (at least in chrome)