# File lib/xml/util/xmlcanonicalizer.rb, line 324
        def is_node_visible(node)
          return true if (@xnl.size() == 0)
          @xnl.each{|element|
            return true if (element == node)
          }
          return false
        end