FluentDOM got an own webpage at http://fluentdom.org.
You can now find nightly builds at http://nightly.fluentdom.org. A PHPUnit log file and the code coverage report for the latest nightly build is provided, too.
Status Update
We added a FluentDOMStyle class. This class extends FluentDOM and adds support for manipulation of the style attributes.
$items = FluentDOMStyle($xhtml)->find('//div');
$items->css(
array(
'text-align' => 'center',
'color' => 'black'
)
);
No comments:
Post a Comment