1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!perl -T
use 5.010001;
use strict;
use warnings;
use Test::More tests => 3;
use HTML::Tidy5;
my $html = do { local $/ = undef; <DATA>; };
my $tidy = HTML::Tidy5->new;
isa_ok( $tidy, 'HTML::Tidy5' );
$tidy->clean( $html );
isa_ok( $tidy, 'HTML::Tidy5' );
pass( 'Cleaned OK' );
exit 0;
__DATA__
<form action="http://www.alternation.net/cobra/index.pl">
<td><input name="random" type="image" value="random creature" src="http://www.creaturesinmyhead.com/images/random.gif"></td>
</form>
|