Sha256: feda46aea19cdbffdd0b9cd8224c981c047da25b9c5bd20ae01f007981062c15
Contents?: true
Size: 707 Bytes
Versions: 20
Compression:
Stored size: 707 Bytes
Contents
module Watir module Generator class SVG < Base private # fix collisions with HTML # # TODO: change generator so instead these classes # are inherited from HTML ones def ignored_tags %w[a audio canvas iframe image script source style text title track video unknown] end def ignored_interfaces ignored_tags.map { |tag| "SVG#{tag.capitalize}Element" } end def ignored_attributes [] end def generator_implementation 'SVG' end def visitor_class SVG::Visitor end def extractor_class SVG::SpecExtractor end end # SVG end # Generator end # Watir
Version data entries
20 entries across 20 versions & 1 rubygems