The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package CSS::Coverage::XPath;
{
  $CSS::Coverage::XPath::VERSION = '0.04';
}
use strict;
use warnings;
use base 'HTML::Selector::XPath';

our %PASSTHRU = map { $_ => 1 } qw/
    hover
    link
    visited
    active
    focus
/;

sub parse_pseudo {
    my ($self, $pseudo) = @_;

    if ($PASSTHRU{$pseudo}) {
        return "[true()]";
    }

    return;
}

1;

__END__

=pod

=head1 NAME

CSS::Coverage::XPath

=head1 VERSION

version 0.04

=head1 AUTHOR

Shawn M Moore <code@sartak.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Infinity Interactive, Inc..

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut