This file is indexed.

/usr/share/perl5/Weasel/Widgets/HTML.pm is in libweasel-perl 0.11-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
=head1 NAME

Weasel::Widgets::HTML - Helper module for bulk-registration of HTML widgets

=head1 VERSION

0.01

=head1 SYNOPSIS

  use Weasel::Widgets::HTML;

  my $button = $session->page->find('//button');
  # $button is now a Weasel::Widgets::HTML::Button instance

=head1 DESCRIPTION


=cut

package Weasel::Widgets::HTML;

use strict;
use warnings;


use Weasel::Widgets::HTML::Button; # button, reset, image, submit, BUTTON
use Weasel::Widgets::HTML::Selectable; # checkbox, radio, OPTION
use Weasel::Widgets::HTML::Input; # text, password, <default>
use Weasel::Widgets::HTML::Select;

# No widgets for file inputs and
#  more importantly TEXTAREA, FORM and SELECT

1;