Method: CSSPool::CSS::DocumentHandler#namespace

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

#namespace(prefix, uri) ⇒ Object



32
33
34
35
36
37
# File 'lib/csspool/css/document_handler.rb', line 32

def namespace prefix, uri
  @document.namespaces << CSS::NamespaceRule.new(
    prefix,
    uri
  )
end