This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 20317 - David MacDonald and Bruce Bailey, members of WCAG, but not speaking for WCAG, comments
Summary: David MacDonald and Bruce Bailey, members of WCAG, but not speaking for WCAG,...
Status: RESOLVED FIXED
Alias: None
Product: HTML WG
Classification: Unclassified
Component: CR alt techniques [please use LC1 instead] (show other bugs)
Version: unspecified
Hardware: PC Windows NT
: P2 normal
Target Milestone: ---
Assignee: steve faulkner
QA Contact: HTML WG Bugzilla archive list
URL:
Whiteboard:
Keywords: a11y, a11y_text-alt
Depends on:
Blocks:
 
Reported: 2012-12-10 01:08 UTC by dmacdona
Modified: 2014-05-21 12:51 UTC (History)
5 users (show)

See Also:


Attachments

Description dmacdona 2012-12-10 01:08:14 UTC
example 2.5 has alt text:
alt="Bar Chart showing average rainfall in millimetres by country and season.">

the long description follows in a paragraph...there should be a reference to the long description in the alt text, given that there is no programmatic association between the image and the long description.

suggest something like:

alt="Bar Chart showing average rainfall in millimetres by country and season. <add>long description immediately below</add>"
Comment 1 steve faulkner 2014-05-21 12:51:46 UTC
have added figure/figcaption + aria to provide grouping and association

<figuer role="group" aria-labelledby="caption">
<img src="rainchart.gif" alt="Bar chart: Average rainfall in millimetres by Country and Season.">    
<table>    
<caption id="caption">Rainfall in millimetres by Country and Season.</caption>    
<tr><td><th scope="col">UK <th scope="col">Japan<th scope="col">Australia</tr>    
<tr><th scope="row">Spring <td>5.5 (highest)<td>2.4 <td>2 (lowest)</tr>    
<tr><th scope="row">Summer <td>4.5 (highest)<td>3.4<td>2 (lowest)</tr>    
<tr><th scope="row">Autumn <td>3.5 (highest) <td>1.8 <td>1.5 (lowest)</tr>    
<tr><th scope="row">Winter <td>1.5 (highest) <td>1.2 <td>1 lowest</tr>    
</table>
</figure>