Sha256: 31fef606885f67f54f517e0a587bb49692fb05c290935a320eed35e9a773d0f8
Contents?: true
Size: 709 Bytes
Versions: 19
Compression:
Stored size: 709 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
19 entries across 19 versions & 1 rubygems