Sha256: 8b71ba61ddf64c8950d39c2e5eed41e4b25f5dc27dc8e9eb72fd7a236a25b784
Contents?: true
Size: 491 Bytes
Versions: 6
Compression:
Stored size: 491 Bytes
Contents
module Watir class Font < HTMLElement # # size of font # This is in the whatwg spec was not generated: https://html.spec.whatwg.org/#htmlfontelement # # @return [Integer] # def size attribute_value(:size) end end # Font module Container def font(opts = {}) Font.new(self, opts.merge(tag_name: 'font')) end def fonts(opts = {}) FontCollection.new(self, opts.merge(tag_name: 'font')) end end # Container end # Watir
Version data entries
6 entries across 6 versions & 1 rubygems