1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#!perl
use strict;
use warnings;
use Test::More tests => 2;
use HTML::Form;
{
my $form = HTML::Form->parse(
<<"EOT", base => "http://example.com", strict => 1 );
<form>
<label>
<input name="tt" type="text" value="test content">
</label>
</form>
EOT
is( $form->param('tt'), 'test content' );
}
{
my $form = HTML::Form->parse(
<<"EOT", base => "http://example.com", strict => 1 );
<form>
<label>
<textarea name="tt">test content</textarea>
</label>
</form>
EOT
is( $form->param('tt'), 'test content' );
}
|