Skip to content

Support @counter-style and @font-feature-values #102

Closed
@mganss

Description

@mganss

The at-rules @counter-style and @font-feature-values are not currently supported by the parser.

var html = @"<style>
                @font-feature-values Font One {
                    @styleset {
                    nice-style: 12;
                    }
                }
                @counter-style thumbs {
                  system: cyclic;
                  symbols: ""\1F44D"";
                  suffix: "" "";
                }
            </style>";
var parser = new HtmlParser(new HtmlParserOptions(), BrowsingContext.New(Configuration.Default.WithCss(new CssParserOptions())));
var dom = parser.ParseDocument(html);
var styleSheet = dom.StyleSheets[0] as ICssStyleSheet;
var css = styleSheet.ToCss(); // -> ""
var rules = styleSheet.Rules.Length; // -> 0

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions