Subject: | keep_blanks has no effect on parse_balanced_chunk anymore |
Specifying ->keep_blanks(0) has no effect on parse_balanced_chunk
anymore. The script below used to pass with XML::LibXML 1.69, but is
broken since 1.70 and also with the newest 1.96.
Regards,
Slaven
#!/usr/bin/perl
use strict;
use warnings;
use Test::More 'no_plan';
use XML::LibXML;
my $xml = <<EOF;
<bla>
<foo/>
</bla>
EOF
my $p = XML::LibXML->new;
$p->keep_blanks(0);
is $p->parse_balanced_chunk($xml)->serialize, "<bla><foo/></bla>\n";
__END__