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

NAME

HTML::Native::Attribute::ReadOnly - A read-only HTML element attribute

SYNOPSIS

    use HTML::Native::Attribute::ReadOnly;

    my $attr =
        HTML::Native::Attribute::ReadOnly->new ( [ qw ( foo bar ) ] );
    print $attr;  # prints "foo bar"
    $attr->{foo} = 0;  # dies

DESCRIPTION

An HTML::Native::Attribute::ReadOnly object is an HTML::Native::Attribute object that does not allow modification of its values.

See "DYNAMIC GENERATION" in HTML::Native::Attribute for further details on when and why you might want to use an HTML::Native::Attribute::ReadOnly object.