Method: CSSPool::CSS::DocumentHandler#property

Defined in:
lib/csspool/css/document_handler.rb

#property(declaration) ⇒ Object



49
50
51
52
53
54
55
56
57
58
59
# File 'lib/csspool/css/document_handler.rb', line 49

def property declaration
  if !@active_fontface_rule.nil?
    rs = @active_fontface_rule
  elsif !@active_keyframes_block.nil?
    rs = @active_keyframes_block
  else
    rs = @document.rule_sets.last
  end
  declaration.rule_set = rs
  rs.declarations << declaration
end