This prints 100 WOWs, but not a single WOW in the toString. Why?
for my $node ( $body->findnodes('//a') ) {
$node->setAttribute( 'href', "WOW" );
}
for my $node ( $body->findnodes('//a') ) {
print $node->getAttribute('href');
}
print $body->toString(2);