Issues
Ensure lists for indentation are not used
Fixed
GENERAL
TESTING
GENERAL
TESTING
Description
Details
Priority
MinorAffects versions
Fix versions
Components
Assignee
Kendra EdwardsKendra EdwardsReporter
Matthew JonesMatthew Jones
Details
Details
Priority
Affects versions
Fix versions
Components
Assignee
Kendra Edwards
Kendra EdwardsReporter
Matthew Jones
Matthew JonesCreated April 19, 2018 at 7:36 AM
Updated September 11, 2019 at 9:29 AM
Resolved September 20, 2018 at 8:33 AM
Activity
Kendra EdwardsFebruary 26, 2019 at 2:25 PM
This is the APPS Accessibility team,
We can verify that this defect has been fixed.
[Not Fixed] - 3/13/2018There is no need for a list in the "Chat" form.HTML:
<ul id="pc_options" class="Mrphs-portalChat__list Mrphs-portalChat__options"> <li id="pc_show_off_ctrl" class="Mrphs-portalChat__options--list-item"> <input id="Mrphs-portalChat__showoffline" class="Mrphs-portalChat__options--checkbox" type="checkbox"> <label for="Mrphs-portalChat__showoffline" class="Mrphs-portalChat__options--label Mrphs-portalChat__options--showoffline">Show offline connections</label> </li>
...Users of assistive technologies may be confused by the two structures: list and form fields.The HTML list elements dl, ul, and ol should only be used to create lists, not for formatting effects such as indentation.Developers should remove the ul and li elements from the form.HTML:
<div id="pc_options" class="Mrphs-portalChat__list Mrphs-portalChat__options"> <div id="pc_show_off_ctrl" class="Mrphs-portalChat__options--list-item">
...