csstree / validator

CSS validator based on CSSTree
MIT License
65 stars 14 forks source link

Unknown property text-wrap #37

Open mgurgel opened 4 days ago

mgurgel commented 4 days ago

I’m seeing both csstree-validator@3.0.0 and stylelint-csstree-validator@3.0.0 flag text-wrap as an unknown property, even though it appears in the CSS Tree docs

Steps to reproduce:

  1. Create a file with the following contents
    div {
    text-wrap: nowrap;
    }
  2. Run it through csstree-validator
  3. It will return the following error:
    * Unknown property `text-wrap`
  4. Running the same file through the W3C Validator does not return any errors