commit | 21dc8cea7859df0b7f882b10b6a6effc86d71e8d | [log] [tgz] |
---|---|---|
author | Leon Senft <leonsenft@google.com> | Wed Apr 12 11:00:09 2017 -0700 |
committer | Leon Senft <leonsenft@google.com> | Wed Apr 12 11:00:09 2017 -0700 |
tree | 1e3d6493bbbcf0b71d63b65dc2346e7da7c46cdb | |
parent | 49a9dabf141eb91038737b16b8f9bca42ebbd2ad [diff] |
Updates changelog to reflect vendor specific rule.
This is a CSS parser written entirely in Dart. It can be used in the client/server/command line.
This package is installed with Pub, see: install instructions for this package.
Parsing CSS is easy!
import 'package:csslib/parser.dart' show parse; import 'package:csslib/css.dart'; main() { var stylesheet = parse( '.foo { color: red; left: 20px; top: 20px; width: 100px; height:200px }'); print(stylesheet.toString()); }
You can pass a String or list of bytes to parse
.
Basic tests can be found in this repository:
pub run test
The full CSS test suite can be found in https://github.com/dart-lang/csslib-test-suite
cd ../csslib-test-suite ./run.sh