In particular,
looks like it was auto-generated by some tool on the remote end, so you can expect those classes to change to new random strings any time the remote side gets recompiled. #### use strict; use warnings; use XML::Diff; my $html1 =<
EOH my $html2 =<
EOH my $diff = XML::Diff->new(); my $diffgram = $diff->compare( -old => $html1, -new => $html2, ); print $diffgram; ##
##