NAME
HTML::Object::DOM::Element::Dialog - HTML Object DOM Dialog Class
SYNOPSIS
use HTML::Object::DOM::Element::Dialog;
my $dialog = HTML::Object::DOM::Element::Dialog->new ||
die( HTML::Object::DOM::Element::Dialog->error, "\n" );
VERSION
v0.2.0
DESCRIPTION
Experimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.
INHERITANCE
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +------------------------------------+
| HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::Dialog |
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +------------------------------------+
PROPERTIES
Inherits properties from its parent HTML::Object::DOM::Element
open
A boolean value reflecting the open HTML attribute, indicating whether the dialog is available for interaction.
See also Mozilla documentation
returnValue
A string that sets or returns the return value for the dialog.
See also Mozilla documentation
METHODS
Inherits methods from its parent HTML::Object::DOM::Element
None of those methods do anything, since it would require interactivity. So, they all return undef
.
close
Returns undef
since this feature is unavailable under perl.
See also Mozilla documentation
show
Returns undef
since this feature is unavailable under perl.
See also Mozilla documentation
showModal
Returns undef
since this feature is unavailable under perl.
See also Mozilla documentation
AUTHOR
Jacques Deguest <jack@deguest.jp>
SEE ALSO
Mozilla documentation, Mozilla documentation on dialog element
COPYRIGHT & LICENSE
Copyright(c) 2021 DEGUEST Pte. Ltd.
All rights reserved
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.