]>
iEval git - html-element-library.git/blob - t/replace_content.t
4 my $t1 = HTML
::Element
->new_from_lol(
7 [ 'title', 'I like stuff!' ]],
8 ['body', {id
=> 'corpus'}, {'lang', 'en-JP'},
10 ['p', 'um, p < 4!', {'class' => 'par123'}],
11 ['div', {foo
=> 'bar'}, '123'], # at 0.1.2
12 ['div', {jack
=> 'olantern'}, '456']]]); # at 0.1.2
14 $t1->look_down('_tag' => 'body')->replace_content('all gone!');
16 isxml
$t1, \'<html
><head
><title
>I like stuff
!</title></head
><body id
="corpus" lang
="en-JP">all gone
!</body></html
>', 'replace_content
';
This page took 0.0508189999999999 seconds and 4 git commands to generate.