line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
###################################################################################################
|
2
|
|
|
|
|
|
|
# Copyright 2013/2014 by Marcel Greter
|
3
|
|
|
|
|
|
|
# This file is part of OCBNET-CSS3 (GPL3)
|
4
|
|
|
|
|
|
|
####################################################################################################
|
5
|
|
|
|
|
|
|
package OCBNET::CSS3::Stylesheet;
|
6
|
|
|
|
|
|
|
####################################################################################################
|
7
|
|
|
|
|
|
|
our $VERSION = '0.2.5';
|
8
|
|
|
|
|
|
|
####################################################################################################
|
9
|
|
|
|
|
|
|
|
10
|
11
|
|
|
11
|
|
55
|
use strict;
|
|
11
|
|
|
|
|
17
|
|
|
11
|
|
|
|
|
311
|
|
11
|
11
|
|
|
11
|
|
49
|
use warnings;
|
|
11
|
|
|
|
|
34
|
|
|
11
|
|
|
|
|
257
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
####################################################################################################
|
14
|
11
|
|
|
11
|
|
54
|
use base 'OCBNET::CSS3::DOM::Block';
|
|
11
|
|
|
|
|
17
|
|
|
11
|
|
|
|
|
7245
|
|
15
|
|
|
|
|
|
|
####################################################################################################
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
# static getter
|
18
|
|
|
|
|
|
|
#**************************************************************************************************
|
19
|
1
|
|
|
1
|
0
|
11
|
sub type { return 'sheet' }
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
####################################################################################################
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
# add basic extended type with highest priority
|
24
|
|
|
|
|
|
|
#**************************************************************************************************
|
25
|
|
|
|
|
|
|
# unshift @OCBNET::CSS3::types, [
|
26
|
|
|
|
|
|
|
# qr/\A\z/is,
|
27
|
|
|
|
|
|
|
# 'OCBNET::CSS3::Stylesheet',
|
28
|
|
|
|
|
|
|
# sub { ! $_[1] }
|
29
|
|
|
|
|
|
|
# ];
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
####################################################################################################
|
32
|
|
|
|
|
|
|
####################################################################################################
|
33
|
|
|
|
|
|
|
1;
|