Class: Hatemile::AccessibleDisplay Abstract
- Inherits:
-
Object
- Object
- Hatemile::AccessibleDisplay
- Defined in:
- lib/hatemile/accessible_display.rb
Overview
The AccessibleDisplay interface improve accessibility, showing informations.
Direct Known Subclasses
Instance Method Summary collapse
-
#display_all_alternative_text_images ⇒ void
abstract
Display the alternative text of all images of page.
-
#display_all_cell_headers ⇒ void
abstract
Display the headers of each data cell of all tables of page.
-
#display_all_languages ⇒ void
abstract
Display the language of all elements of page.
-
#display_all_links_attributes ⇒ void
abstract
Display the attributes of all links of page.
-
#display_all_roles ⇒ void
abstract
Display the WAI-ARIA roles of all elements of page.
-
#display_all_shortcuts ⇒ void
abstract
Display all shortcuts of page.
-
#display_all_titles ⇒ void
abstract
Display the titles of all elements of page.
-
#display_all_waiaria_states ⇒ void
abstract
Display the WAI-ARIA attributes of all elements of page.
-
#display_alternative_text_image(image) ⇒ void
abstract
Display the alternative text of image.
-
#display_cell_header(table_cell) ⇒ void
abstract
Display the headers of each data cell of table.
-
#display_language(element) ⇒ void
abstract
Display the language of element.
-
#display_link_attributes(link) ⇒ void
abstract
Display the attributes of link.
-
#display_role(element) ⇒ void
abstract
Display the WAI-ARIA role of element.
-
#display_shortcut(element) ⇒ void
abstract
Display the shortcuts of element.
-
#display_title(element) ⇒ void
abstract
Display the title of element.
-
#display_waiaria_states(element) ⇒ void
abstract
Display the WAI-ARIA attributes of element.
Instance Method Details
#display_all_alternative_text_images ⇒ void
This method returns an undefined value.
Display the alternative text of all images of page.
174 175 176 |
# File 'lib/hatemile/accessible_display.rb', line 174 def display_all_alternative_text_images # Interface method end |
#display_all_cell_headers ⇒ void
This method returns an undefined value.
Display the headers of each data cell of all tables of page.
77 78 79 |
# File 'lib/hatemile/accessible_display.rb', line 77 def display_all_cell_headers # Interface method end |
#display_all_languages ⇒ void
This method returns an undefined value.
Display the language of all elements of page.
155 156 157 |
# File 'lib/hatemile/accessible_display.rb', line 155 def display_all_languages # Interface method end |
#display_all_links_attributes ⇒ void
This method returns an undefined value.
Display the attributes of all links of page.
116 117 118 |
# File 'lib/hatemile/accessible_display.rb', line 116 def display_all_links_attributes # Interface method end |
#display_all_roles ⇒ void
This method returns an undefined value.
Display the WAI-ARIA roles of all elements of page.
58 59 60 |
# File 'lib/hatemile/accessible_display.rb', line 58 def display_all_roles # Interface method end |
#display_all_shortcuts ⇒ void
This method returns an undefined value.
Display all shortcuts of page.
39 40 41 |
# File 'lib/hatemile/accessible_display.rb', line 39 def display_all_shortcuts # Interface method end |
#display_all_titles ⇒ void
This method returns an undefined value.
Display the titles of all elements of page.
136 137 138 |
# File 'lib/hatemile/accessible_display.rb', line 136 def display_all_titles # Interface method end |
#display_all_waiaria_states ⇒ void
This method returns an undefined value.
Display the WAI-ARIA attributes of all elements of page.
97 98 99 |
# File 'lib/hatemile/accessible_display.rb', line 97 def display_all_waiaria_states # Interface method end |
#display_alternative_text_image(image) ⇒ void
This method returns an undefined value.
Display the alternative text of image.
165 166 167 |
# File 'lib/hatemile/accessible_display.rb', line 165 def display_alternative_text_image(image) # Interface method end |
#display_cell_header(table_cell) ⇒ void
This method returns an undefined value.
Display the headers of each data cell of table.
68 69 70 |
# File 'lib/hatemile/accessible_display.rb', line 68 def display_cell_header(table_cell) # Interface method end |
#display_language(element) ⇒ void
This method returns an undefined value.
Display the language of element.
146 147 148 |
# File 'lib/hatemile/accessible_display.rb', line 146 def display_language(element) # Interface method end |
#display_link_attributes(link) ⇒ void
This method returns an undefined value.
Display the attributes of link.
107 108 109 |
# File 'lib/hatemile/accessible_display.rb', line 107 def display_link_attributes(link) # Interface method end |
#display_role(element) ⇒ void
This method returns an undefined value.
Display the WAI-ARIA role of element.
49 50 51 |
# File 'lib/hatemile/accessible_display.rb', line 49 def display_role(element) # Interface method end |
#display_shortcut(element) ⇒ void
This method returns an undefined value.
Display the shortcuts of element.
30 31 32 |
# File 'lib/hatemile/accessible_display.rb', line 30 def display_shortcut(element) # Interface method end |
#display_title(element) ⇒ void
This method returns an undefined value.
Display the title of element.
127 128 129 |
# File 'lib/hatemile/accessible_display.rb', line 127 def display_title(element) # Interface method end |
#display_waiaria_states(element) ⇒ void
This method returns an undefined value.
Display the WAI-ARIA attributes of element.
88 89 90 |
# File 'lib/hatemile/accessible_display.rb', line 88 def display_waiaria_states(element) # Interface method end |