CSS-Prepare

 view release on metacpan or  search on metacpan

lib/CSS/Prepare/Property/Formatting.pm  view on Meta::CPAN

package CSS::Prepare::Property::Formatting;

use Modern::Perl;
use CSS::Prepare::Property::Values;



sub parse {
    my $self        = shift;
    my $has_hack    = shift;
    my $location    = shift;
    my %declaration = @_;
    
    my $property = $declaration{'property'};
    my $value    = $declaration{'value'};
    my %canonical;
    my @errors;
    
    my $valid_property_or_error = sub {
            my $type  = shift;
            
            my $sub      = "is_${type}_value";
            my $is_valid = 0;
            
            eval {
                no strict 'refs';
                $is_valid = &$sub( $value );
            };
            
            if ( $is_valid ) {
                $canonical{ $property } = $value;
            }
            else {
                $type =~ s{_}{-}g;
                push @errors, {
                        error => "invalid ${type} property: '${value}'"
                    };
            }
        };
    
    foreach my $type qw( clear direction display float position ) {
        &$valid_property_or_error( $type )
            if $type eq $property;
    }
    
    &$valid_property_or_error( 'height' )
        if 'height' eq $property;
    
    &$valid_property_or_error( 'max_height' )
        if 'max-height' eq $property;
    
    &$valid_property_or_error( 'min_height' )
        if 'min-height' eq $property;
    
    &$valid_property_or_error( 'width' )
        if 'width' eq $property;
    
    &$valid_property_or_error( 'max_width' )
        if 'max-width' eq $property;
    
    &$valid_property_or_error( 'min_width' )
        if 'min-width' eq $property;
    

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.393 second using v1.00-cache-2.02-grep-82fe00e-cpan-2c419f77a38b )