class Hatemile::AccessibleDisplay
The AccessibleDisplay
interface improve accessibility, showing informations.
@abstract
Public Instance Methods
Display the alternative text of all images of page.
@abstract @return [void]
# File lib/hatemile/accessible_display.rb, line 174 def display_all_alternative_text_images # Interface method end
Display the headers of each data cell of all tables of page.
@abstract @return [void]
# File lib/hatemile/accessible_display.rb, line 77 def display_all_cell_headers # Interface method end
Display the language of all elements of page.
@abstract @return [void]
# File lib/hatemile/accessible_display.rb, line 155 def display_all_languages # Interface method end
Display the attributes of all links of page.
@abstract @return [void]
# File lib/hatemile/accessible_display.rb, line 116 def display_all_links_attributes # Interface method end
Display the WAI-ARIA roles of all elements of page.
@abstract @return [void]
# File lib/hatemile/accessible_display.rb, line 58 def display_all_roles # Interface method end
Display all shortcuts of page.
@abstract @return [void]
# File lib/hatemile/accessible_display.rb, line 39 def display_all_shortcuts # Interface method end
Display the titles of all elements of page.
@abstract @return [void]
# File lib/hatemile/accessible_display.rb, line 136 def display_all_titles # Interface method end
Display the WAI-ARIA attributes of all elements of page.
@abstract @return [void]
# File lib/hatemile/accessible_display.rb, line 97 def display_all_waiaria_states # Interface method end
Display the alternative text of image.
@abstract @param image The image. @return [void]
# File lib/hatemile/accessible_display.rb, line 165 def display_alternative_text_image(image) # Interface method end
Display the headers of each data cell of table.
@abstract @param table_cell [Hatemile::Util::Html::HTMLDOMElement] The table cell. @return [void]
# File lib/hatemile/accessible_display.rb, line 68 def display_cell_header(table_cell) # Interface method end
Display the language of element.
@abstract @param element [Hatemile::Util::Html::HTMLDOMElement] The element. @return [void]
# File lib/hatemile/accessible_display.rb, line 146 def display_language(element) # Interface method end
Display the attributes of link.
@abstract @param link [Hatemile::Util::Html::HTMLDOMElement] The link element. @return [void]
# File lib/hatemile/accessible_display.rb, line 107 def display_link_attributes(link) # Interface method end
Display the WAI-ARIA role of element.
@abstract @param element [Hatemile::Util::Html::HTMLDOMElement] The element. @return [void]
# File lib/hatemile/accessible_display.rb, line 49 def display_role(element) # Interface method end
Display the shortcuts of element.
@abstract @param element [Hatemile::Util::Html::HTMLDOMElement] The element with
shortcuts.
@return [void]
# File lib/hatemile/accessible_display.rb, line 30 def display_shortcut(element) # Interface method end
Display the title of element.
@abstract @param element [Hatemile::Util::Html::HTMLDOMElement] The element with
title.
@return [void]
# File lib/hatemile/accessible_display.rb, line 127 def display_title(element) # Interface method end
Display the WAI-ARIA attributes of element.
@abstract @param element [Hatemile::Util::Html::HTMLDOMElement] The element with
WAI-ARIA attributes.
@return [void]
# File lib/hatemile/accessible_display.rb, line 88 def display_waiaria_states(element) # Interface method end