class Hatemile::AccessibleAssociation
The AccessibleAssociation
interface improve accessibility, associating elements.
@abstract
Public Instance Methods
associate_all_data_cells_with_header_cells()
click to toggle source
Associate all data cells with header cells of all tables of page.
@abstract @return [void]
# File lib/hatemile/accessible_association.rb, line 39 def associate_all_data_cells_with_header_cells # Interface method end
associate_all_labels_with_fields()
click to toggle source
Associate all labels of page with fields.
@abstract @return [void]
# File lib/hatemile/accessible_association.rb, line 58 def associate_all_labels_with_fields # Interface method end
associate_data_cells_with_header_cells(table)
click to toggle source
Associate all data cells with header cells of table.
@abstract @param table [Hatemile::Util::Html::HTMLDOMElement] The table. @return [void]
# File lib/hatemile/accessible_association.rb, line 30 def associate_data_cells_with_header_cells(table) # Interface method end
associate_label_with_field(label)
click to toggle source
Associate label with field.
@abstract @param label [Hatemile::Util::Html::HTMLDOMElement] The label. @return [void]
# File lib/hatemile/accessible_association.rb, line 49 def associate_label_with_field(label) # Interface method end