The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

package W3C::XHTML::Body;
use Moose;
with 'XML::Rabbit::Node';

has 'images' => (
    isa         => 'ArrayRef[W3C::XHTML::Image]',
    traits      => [qw(XPathObjectList)],
    xpath_query => './/xhtml:img',
);

no Moose;
__PACKAGE__->meta->make_immutable();

1;