class Hatemile::AccessibleDisplay

The AccessibleDisplay interface improve accessibility, showing informations.

@abstract

Public Instance Methods

display_all_alternative_text_images() click to toggle source

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_all_cell_headers() click to toggle source

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_all_languages() click to toggle source

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_all_roles() click to toggle source

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() click to toggle source

Display all shortcuts of page.

@abstract @return [void]

# File lib/hatemile/accessible_display.rb, line 39
def display_all_shortcuts
  # Interface method
end
display_all_titles() click to toggle source

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_all_waiaria_states() click to toggle source

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_alternative_text_image(image) click to toggle source

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_cell_header(table_cell) click to toggle source

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_language(element) click to toggle source

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_role(element) click to toggle source

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_shortcut(element) click to toggle source

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_title(element) click to toggle source

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_waiaria_states(element) click to toggle source

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