Description
In Sufficient Technique C27 ‘Making the DOM order match the visual order’ it says “This technique is Sufficient to meet 1.3.2: Meaningful Sequence”. This is not always correct. Applying C27 may sometimes cause a failure of 1.3.2, not a pass. This would happen whenever a piece of content is visually positioned above another piece that is before it in the logical sequence. A typical and common scenario shown in the attached screenshot is where something is positioned above its heading.
The screenshot shows part of a web page that contains a number of eLearning resources. Some are videos, some are audiobooks. Each resource has a title, a type (“video” or “audiobook”), and a text description. The titles are big and bold and are headings in order to meet SC 1.3.1 Info and Relationships. So the meaningful sequence must have the type and the description coming after the title (the heading). If they were before the title they would be under the previous heading which would give them the incorrect meaning and fail SC 1.3.2. But visually the type (“video” or “audiobook”) is positioned above the title. In this case, following C27 ‘Making the DOM order match the visual order’ would mean placing the type before the title (its heading) in the DOM. This would cause a failure of 1.3.2, not a pass.
So I would suggest that it is wrong for C27 to state that it is “Sufficient to meet 1.3.2: Meaningful Sequence”.