Re: Finalizing an Issue-204 CP

On Sat, Apr 21, 2012 at 1:13 PM, Benjamin Hawkes-Lewis
<bhawkeslewis@googlemail.com> wrote:
> Consider the following markup:
>
>  <img alt="October Sales chart" aria-describedby="#description-link">
>  <a id="#description" href="october-sales.html">Details</a>

[snip]

> It is undeniable that this markup is even more problematic:
>
>  <img alt="October Sales chart" aria-describedby="#description">
>  <a hidden id="#description" href="october-sales.html">Details</a>

Apologies, I messed up the @id; those markup examples should have been:

  <img alt="October Sales chart" aria-describedby="#description-link">
  <a id="description-link" href="october-sales.html">Details</a>

and

  <img alt="October Sales chart" aria-describedby="#description-link">
  <a hidden id="description-link" href="october-sales.html">Details</a>

--
Benjamin Hawkes-Lewis

Received on Saturday, 21 April 2012 12:18:20 UTC