package Oak::Web::HTML::Frame;
use strict;
use Error qw(:try);
use base qw(Oak::Web::Visual);
=head1 NAME
Oak::Web::HTML::Frame - A frame Tag
=head1 HIERARCHY
L
L
L
L
L
=head1 PROPERTIES
The Oak::Web::HTML::Frame object has the properties defined by W3C:
=cut
sub valid_html_attributes {
my $self = shift;
(
$self->core_attributes,
"longdesc",
"name",
"src",
"frameborder",
"marginwidth",
"marginheight",
"noresize",
"scrolling"
);
}
sub show {
my $self = shift;
$self->SUPER::show;
print "print_html_attributes;
print ">\n";
}
1;
__END__
=head1 BUGS
Too early to determine. :)
=head1 COPYRIGHT
Copyright (c) 2001
Daniel Ruoso
All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.