Given a DOMDocument and a CSS file, calculate the effective CSS for each node in the DOM
Usage:
$parser = new PHPEffectiveCss;
$parser->apply_css($dom, $css);
For each selector in the CSS, it finds the matching DOM nodes and map the selector/styles to the node. Then for each node it gets all selectors applied and calculated the weight of the selector to determine which properties to override. The resulting CSS is applied as a style attribute to the node
This is a very early relesese.
- Write better css-weight algoritm
- Get into account inline styles
- Handle !important declarations
- allow querying for the effective CSS by selector, instead of inlining the css
- write tests