jsdom / cssstyle

A Node.js implementation of the CSS Object Model CSSStyleDeclaration interface
MIT License
107 stars 70 forks source link

numberRegEx should match whole numbers #94

Closed jsakas closed 5 years ago

jsakas commented 5 years ago

The existing regex requires a decimal. This matches 1.0, but not 1, making rgba(1, 1, 1, 1) invalid when it should be considered valid.

Closes #92