Skip to content

Commit 7a49b8e

Browse files
committed
Added accessibility note. Put the SVG inside OBJECT instead of IMG,
trying to see if that is what makes Safari crash...
1 parent 59ccf61 commit 7a49b8e

1 file changed

Lines changed: 56 additions & 4 deletions

File tree

css3-layout/Overview.src.html

Lines changed: 56 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ <h2 class="no-num no-toc">[LONGSTATUS] [DATE: 3 August 2004]</h2>
1919
<dl>
2020
<dt>This version: </dt>
2121
<dd><a href="[VERSION]">
22-
http://www.w3.org/TR/[YEAR]/ED-[SHORTNAME]-[CDATE]/</a>
22+
http://www.w3.org/TR/[YEAR]/WD-[SHORTNAME]-[CDATE]/</a>
2323
<dt>Latest version:</dt>
2424
<dd><a
2525
href="[LATEST]">
2626
http://www.w3.org/TR/css3-layout/</a>
2727
<dt>Previous version:</dt>
28-
<dd><a href="http://www.w3.org/TR/2010/WD-css3-layout-20111129/">
29-
http://www.w3.org/TR/2010/WD-css3-layout-20111129/</a>
28+
<dd><a href="http://www.w3.org/TR/2010/WD-css3-layout-20100429/">
29+
http://www.w3.org/TR/2010/WD-css3-layout-20100429/</a>
3030
<dt>Editors:</dt>
3131
<dd class=vcard><span class=fn>Bert Bos</span>
3232
(<span class=org>W3C</span>) <a class=email
@@ -96,7 +96,7 @@ <h2 id=dependencies>Dependencies on other modules</h2>
9696
<li><cite>CSS values and Units module</cite> [[!CSS3VAL]] &ndash; <a
9797
href="/TR/css3-values#strings">
9898
<dfn><var>&lt;string&gt;</var></dfn></a> and <a
99-
href="/TR/css3-values#ltlengthgt">
99+
href="/TR/css3-values#length-value">
100100
<dfn><var>&lt;length&gt;</var></dfn></a>.
101101

102102
<li><cite>CSS box module</cite> [[!CSS3BOX]] &ndash; properties
@@ -518,6 +518,52 @@ <h2>Introduction</h2>
518518
to the second H1, etc.)
519519
</div>
520520

521+
<h2 id=accessibility>A note about accessibility</h2>
522+
523+
<p><em>(This section is not normative.)</em>
524+
525+
<p>The facilities in this specification allow elements from a document
526+
to be displayed in a visual order that is to a large extent
527+
independent of the order in the document. That may have both positive
528+
and negative effects on accessibility. The positive aspect is that it
529+
allows the content in the document to be kept in logical order, so
530+
that the document is as functional as possible without the style sheet
531+
and on media where the style sheet doesn't apply. A negative aspect is
532+
that a document that has a defined tab order (the order in which
533+
elements get the focus when the tab-key is pressed) will show on the
534+
screen with a tab order unrelated to the visual order. It may be
535+
necessary to use the keyboard control features of the CSS Basic User
536+
Interface module [[CSS3UI]] to ensure that the tab navigation follows
537+
the visual order, or to refrain from positioning semantically related
538+
elements in different parts of a template.
539+
540+
<p>The following two requirements from the Web Content Accessibility
541+
Guidelines (WCAG) 2.0 [[WCAG20]] are particularly relevant. See that
542+
specification for more information.
543+
544+
<blockquote>
545+
<p><a
546+
href="http://www.w3.org/TR/2008/REC-WCAG20-20081211/#content-structure-separation-sequence"
547+
><strong>1.3.2 Meaningful Sequence:</strong></a> When the sequence in
548+
which content is presented affects its meaning, a <a
549+
href="http://www.w3.org/TR/2008/REC-WCAG20-20081211/#correct-reading-sequencedef"
550+
>correct reading sequence</a> can be <a
551+
href="http://www.w3.org/TR/2008/REC-WCAG20-20081211/#programmaticallydetermineddef
552+
">programmatically determined.</a> (Level A)
553+
</blockquote>
554+
555+
<blockquote>
556+
<p><a
557+
href="http://www.w3.org/TR/2008/REC-WCAG20-20081211/#navigation-mechanisms-focus-order"
558+
><strong>2.4.3 Focus Order:</strong></a> If a <a
559+
href="http://www.w3.org/TR/2008/REC-WCAG20-20081211/#webpagedef" >Web
560+
page</a> can be <a
561+
href="http://www.w3.org/TR/2008/REC-WCAG20-20081211/#nav-seqdef"
562+
>navigated sequentially</a> and the navigation sequences affect
563+
meaning or operation, focusable components receive focus in an order
564+
that preserves meaning and operability. (Level A)
565+
</blockquote>
566+
521567
<h2>Features out of scope</h2>
522568

523569
<p>A number of features that are related to grid layouts are not
@@ -2099,9 +2145,15 @@ <h2 id=history>History</h2>
20992145
(see <a href="#intrusion">figure</a>).
21002146

21012147
<div class=figure id=intrusion>
2148+
<!--
21022149
<p><img src="cutout.svg" alt="An image that partially overlaps two
21032150
columns makes the text wrap around it on both sides."
21042151
longdesc="cutout.desc">
2152+
-->
2153+
<p><object width=149 height=170 data="cutout.svg"><img
2154+
src=cutout.png alt="An image that partially overlaps two columns
2155+
makes the text wrap around it on both sides."
2156+
longdesc="cutout.desc"></object>
21052157

21062158
<p class=caption>An image (or a “pull quote”) is placed centered
21072159
on the page and intrudes on two areas.

0 commit comments

Comments
 (0)