WAI Accessibility Guidelines:
Authoring Tools

W3C Working Draft 2-November-1998

 

This version:
http://www.w3.org/WAI/AU/WAI-AUTOOLS-19981102
Latest version:
http://www.w3.org/WAI/AU/WAI-AUTOOLS
Previous version:
http://www.w3.org/WAI/AU/WAI-AUTOOLS-19981013
Editors:
Jutta Treviranus <jutta.treviranus@utoronto.ca>
Jan Richards <jan.richards@utoronto.ca>
Nancy Sicchia<nancy.sicchia@utoronto.ca>
Ian Jacobs <ij@w3.org>

Copyright  ©  1998 W3C (MIT, INRIA, Keio), All Rights Reserved.

Abstract

This document provides guidelines to authoring tool manufacturers for increasing the accessibility of user-authored Web pages for people with disabilities. Companion documents include guidelines for increading the accessibility of authoring tools themselves as well as techniques for implementing accessibility awareness in authoring tools.

This document is part of a series of accessibility documents published by the Web Accessibility Initiative.

Status of this document

This is [not yet] a W3C Working Draft for review by W3C members and other interested parties. It is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to use W3C Working Drafts as reference material or to cite them as other than "work in progress". This is work in progress and does not imply endorsement by, or the consensus of, either W3C or members of the WAI User Agent (AU) working group.

This document has been produced as part of the W3C WAI Activity, and is intended as a draft of a Proposed Recommendation for how to improve authoring tool accessibility. The goals of the WAI-AU Working Group are discussed in the WAI-AU charter. A list of the current AU working group members is available.

Available formats

Comments

Please send comments about this document to the public mailing list: w3c-wai-au@w3.org.

Table of Contents


1 Introduction

The guidelines in this document are meant to guide authoring tool developers and vendors as they design their products. For the purposes of this document the term "authoring tool" will refer to authoring tools, generation tools and conversion tools.  The authoring tool guidelines are designed to help developers guide users towards accessible authoring practices.  This approach emphasizes the role of the user interface in informing, supporting, correcting and motivating authors during the editing process. For more detailed discussion of specific accessiblity issues of particular languages, see the WAI Guidelines: Page Author document.

1.1 Overview: Recommendations for Authoring Tool Developers

Guidelines for Development of Web Authoring Tools that Support Accessibility
These guidelines outline design goals and techniques for incorporating accressible document creation awareness into Web authoring tools.
 
Guidelines for Ensuring an Accessible Authoring Environment
These guidelines outline design goals and techniques for increasing the accessibility of authoring tools themselves for people with disabilities.

1.2 Guideline Priorities

In order to guide authorting tool developers more effectively, each guideline in this document is assigned a priority.

[Priority 1]
This guideline is fundamental to the creation of accessible documents by authoring tools.
[Priority 2]
This guideline is important to the creation of accessible documents by authoring tools.
[Priority 3]
This guideline promotes the creation of accessible documents by authoring tools.

2 Terms and Definitions

2.1 Markup Editing Tools and Functions

Authoring Tool
An Authoring Tool is any application that is specifically designed to aid users in the editing of markup language documents. The editing processes covered by this definition may range from direct hand coding (with automated syntax support or other markup specific features) to WYSIWYG editors that allow markup to be produced from a browsing perspective. This definition does not include text editors and word processors that also allow HTML to be hand produced.
Conversion Tool
A Conversion Tool is any application or application feature that allows content in some other format (proprietary or not) to be converted automatically into a particular markup language. This includes dedicated Web publishers as well as "save as HTML"(or other markup format) features in non-markup applications.
Generation Tool
A Generation Tool is a program or script that produces automatic markup "on the fly" following a template or set of rules.
 
Automated Markup Insertion Function
Automated markup insertion functions are the features of an authoring tool that allow the user to produce markup without directly typing it. This defines a wide range of tools from simple markup insertion aids (such as a bold button on a toolbar) to markup managers (such as table makers that include powerful tools such as "split cells" that can make multiple changes) to high level site building wizards that produce almost complete documents on the basis of a series of user preferences.

2.2 Inaccessible Markup

Inaccessible Markup, Inaccessible Element, Inaccessible Attribute, Inaccessible Authoring Practice and Access Barrier
All these terms are used in the context of inaccessibility as defined by the WAI Accessibility Guidelines: Page Authoring.

2.3 Documents, Elements, and Attributes

Document
A document is a series of elements that are defined by a language (e.g., HTML 4.0 or an XML application).
Element
Each element consists of a name that identifies the type of element, optional attributes that take values, and (possibly empty) content.
Attributes
Some attributes are integral to document accessibility (e.g., the "alt", "title", and "longdesc" attributes in HTML).
Rendered Content
The rendered content is that which an element actually causes to be rendered by the user agent. This may differ from the element's structural content. For example, some elements cause external data to be rendered (e.g., the IMG element in HTML), and in some cases, browsers may render the value of an attribute (e.g., "alt", "title") in place of the element's content.

2.4 Properties, Values, and Defaults

Properties
Properties describe the presentation of a document (e.g., font face, font sizes for different headers, paragraph justification, text color, etc.).
Current Value
Each property has a current value at any moment (e.g., "Helvetica" for font face, "12 point" for font size, "black" for text color, etc.) The current value comes from one of the following sources: browser, document, or user.
Default Value
The value given to a property when the browser is first "turned on" is called the default value. Browsers may allow users to change default values through a variety of mechanisms (e.g., the user interface, style sheets, initialization files, etc.). Setting the current value of a property does not change the default value.
Author Styles
A property may receive its current value when the user agent reads a document: through style sheets within the document or linked externally, through the presentation attributes of an element, via a server, etc. These values are called author styles.
User Styles
The user may set the current value through user style sheets or the user interface; these are called user styles.

2.5 Selection, Focus, and Events

Authoring tools allow users to interact with document through several mechanisms.

Views
An authoring tool may offer several views of the same document. For instance, one view may show raw markup, a second may show a structured tree view, a third may show markup with rendered objects while a final view shows an example of how the document may appear if it were to be rendered by a particular browser.
Viewport
A user accesses the information in a view through a window, frame, or other viewport. The size of the viewport may prevent the user from accessing all of the information in the view at once; viewports may offer scrolling mechanisms to give access to all of the view's information.
Selection
A selection is a set of elements identified for a particular operation. The user selection identifies a set of elements for certain types of user interaction (e.g., cut, copy, and paste operations). The user selection may be established by the user (e.g., by a pointing device or the keyboard) or via an accessibility API. A view may have several selections, but only one user selection.
Current User Selection
When several views co-exist, each may have a user selection, but only one is active, called the current user selection. The selections may be rendered specially (e.g., visually highlighted).
Focus
The focus designates the element (link, form control, element with associated scripts) in a view that will react when the user next interacts with the document.
Activate
The user is said to activate the element with the focus. For instance, a user may activate a link (which usually causes the user agent to follow the link), a form control (which usually causes a change of state in the form control), or an element with associated scripts. A view has only one focus.
Current Focus
When several views co-exist, each may have a focus, but only one is active, called the current focus.
Current View
Both the current focus and the current user selection must be in the same view, called the current view.

2.6 Alternative Representation of Content

Alternate Textual Representations
Certain types of content may not be accessible to all users (e.g., images), so authoring toold must ensure that alternate textual representations ("Alt-text") of information be available to the user. Alternate text can come from element content (e.g., the OBJECT element) or attributes (e.g., "alt" or "title").
Description Link (D-link)
A description link, or D-Link, is an author-supplied link to additional information about a piece of content that might otherwise be difficult to access (image, applet, video, etc.).  D-links should be identified in the document source by giving the "rel" attribute the value "dlink".
Transcripts
A transcript is a line by line record of all dialog and action within a video or audio clip.
Video Captions
A video caption is a textual message that is stored in the text track of a video file. The video caption describes the action and dialog for the scene in which it is diplayed.

2.7 Inserting and Editing

Inserting an element
Inserting an element involves placing that element's markup within the markup of the file. This applies to all insertions, including, but not limited to, direct coding in a text editing mode, choosing an automated insertion from a pull down menu or tool bar button, "drag-and-drop" style insertions, or "paste" operations.
Editing an element
Editing an element involves making changes to one or more of an element's attributes or properties. This applies to all editing, including, but not limited to, direct coding in a text editing mode, making changes to a property dialog or direct UI manipulation.
 

3 Guidelines for Development of Web Authoring Tools that Support Accessibility

3.A Integration of accessibility awareness

Guiding Principle: The acceptance of Web accessiblity requires that accessibility become a fundamental part of authoring tools.

3.A.1 [Priority 1] Support all accessiblity features of relevant languages

Different languages often contain different sets of accessibility features whose relative importances are determined by the capabilities of the languages themselves.    Authoring tools must support all those accessibility features that have been defined for their language(s).  This document will not list these solutions since they are stated elsewhere and are subject to clarification or change.  Instead a partial list of links to language accessibility resources appears below:

Page Author Accessibility Features: (The actual accessible markup solutions)

Page Author Implementation Priorities: (The priorities placed on the accessibility markup solutions)

 

3.A.2  [Priority 1] Allow authors to configure the level of accessibility awareness

Accessibility-aware authoring tools must take into account the differing authoring styles of their users.  Some users may prefer to be alerted to problems when they occur, whereas others may prefer to perform a check after the document is completed.   This is analogous to programming environments that allow users to decide whether to check for correct code during editing or at compile time.

Techniques:

[Priority 1] Authoring tools should be designed so that accessibility awareness is at least partially user configurable.
[Priority 2] The author should be given the freedom to customize when and how the system detects accessibility problems within the priority level constraints of the particular markup language.  Specifically, the author should decide which of the [Page-Author-Priority 2] and [Page-Author-Priority 3] items in the guidelines should be flagged by the authoring tool.
[Priority 1] The author should be prevented from completely disabling checking for [Page-Author-Priority 1] items.
[Priority 2] The author should be given the option of disabling tooltips, input prediction and other active accessibility system features.
[Priority 2] The author should be prevented from publishing inaccessible pages to the Web via built in ftp capability.

 

3.A.3 [Priority 1] Emphasize accessible authoring practices

All recommended page authoring accessibility features (and their priorities) must be taken into account during the design of relevant user interface components and program functionality.

Techniques:

[Priority 1] When more than one means of performing a particular authoring task is available, the most accessible means of performing that task should be the most visible and easily initiated.
[Priority 1] Where several mark-up options are available to the user, authoring tools should always assume that the author intends  to create accessible pages.
[Priority 1] Authors must not be permitted to neglect accessibility solutions that are prioritized as [Page-Author-Priority 1] by a particular markup language.

 

3.A.4 [Priority 1] Identify all inaccessible markup

Authoring tools must be designed so that the all processes dealing with the manipulation of markup text are sensitive to the existence of inaccessible markup.

Techniques:

[Priority 1] Check existing documents when they are opened for editing
[Priority 1] Check documents during all types of editing (including: hand-coding, paste operations and code insertions)
[Priority 1] When problems are detected they should be advertised to the author according to a user-configurable schedule (See Alert Techniques)

 

3.A.5  [Priority 2] Promote accessibility awareness in tool suites

Language markup authoring tools are often integrated into Web publishing suites that also include peripheral tools for handling non-coding tasks.

Techniques: (A sample list of peripheral tools appear below along with recommendations for how they may assist in facilitating accessibility.)

[Priority 2] Site Management Tools: These tools already routinely perform checks for site issues, such as broken links. The ability to check for and correct [Page-Author-Priority 1] accessibility problems should be added to these tools. Documents missing required accessibility solutions, such as "alt"-text for HTML4.0, should be permitted to be published on the Web until all [Page-Author-Priority 1] accessibility problems are corrected.
[Priority 2] Image, Audio and Video Editors: Image editors should be modified to encourage the writing of short "alt"-text and long description text for any images created or edited.  Audio and video editors should encourage the user to create long descriptions, transcripts and captions.  Once created, these associated descriptions should then be cataloged where they can be used to provide image/audio/video library search capability and default descriptive text, should the described object be added to a Web document in the future.

 

3.A.6  [Priority 2] Integrate accessibility features naturally

When a new feature is added to an established software tool without proper integration, the result is often an obvious discontinuity.  Differing color schemes, fonts, interaction styles and even application stability can be factors affecting user acceptance of the new feature.

Techniques:

[Priority 2] In order to gain user acceptance of accessible authoring, it is imperative that any new functionality associated with accessibility be properly integrated into the overall "look and feel" of the authoring tool.
[Priority 2] Accessibility features should never interfere with any of the expected operations of an author's editing environment. For example, fundamental operations such as document saves, closes, and pastes should not be cancelled or postponed due to the existence of accessibility problems.

 

3.B Provision of accessibility information

Guiding Principle: Help files, justifications and examples are critical if authoring styles and attitudes are to become more aware of Web accessibility.

3.B.1  [Priority 1] Provide context-sensitive accessibility help to authors

The issues surrounding Web accessibility are often unknown to Web authors. The provision of convenient links to clear and concisely written help files, will contribute to author acceptance of, and education about, markup accessibility.

Techniques:

[Priority 1] When the user activates the help system, the context for the help response should be provided by the user's focus or edit position within the authoring environment.
[Priority 1] Implement context sensitive help for any special accessibility icons, outlining or other emphasis within the user interface (initially these may appear unfamiliar to new users).
[Priority 1] The accessibility help files, should explain the accessibility problem or accessibility feature quickly, with emphasis placed on the solutions available rather than placing emphasis on elements that have been incorrectly marked up.
[Priority 1] The help files should include frequent examples as well as links to any automated correction utilities (See Section 3.C.5).

 

3.B.2  [Priority 1] Provide rationales that stress Universal Design

As most users have little knowledge of accessibility issues, it is understandable that they will question the justification for abiding accessibility prompts. Authors must be made to understand why time and effort should be devoted to accessibility issues that they may feel are not relevant to themselves.

Techniques:

[Priority 1] The help system should provide some explanations as to the importance of utilizing accessibility features.
[Priority 1] Explanations should emphasize the Universal Design principle of supporting flexible display and control choices, which are critical for:

For more information on Universal Design, see the Trace Center.

 

3.B.3  [Priority 2] Provide the author with positive feedback

Acheiving accessibility requires some extra effort and cooperation from the author.  In order to maintain user good will and acceptance of accessible authoring practices, the user should receive positive reinforcement when accessibility objectives are satisfied.

Techniques:

[Priority 2] Users should be notified of the successful implementation of accessibility objectives (ex. all images have "alt"-text in HTML4 document) as they work towards full compliance.
[Priority 2] Avoid presenting long lists of remaining inaccessible items.

 

3.B.4 [Priority 2] Package multimedia files with pre-written descriptions

Textual descriptions, including "alt"-text, long descriptions, video captions and transcripts, are absolutely necessary for the accessibility of all images, applets, video and audio files. However, the task of writing these descriptions is probably the most time consuming accessibility recommendation made to the author.

Techniques:

[Priority 2] Include professionally written descriptions for all multimedia files packaged with the authoring tool, in order to satisfy the following important objectives:

  1. users will be saved time and effort
  2. a significant number of professionally written descriptions will begin to circulate
  3. users will be provided with convenient models to emulate when they write their own descriptions
  4. users will see evidence of the importance of description writing

[Priority 2] The authoring tool should make use of the pre-written descriptions by suggesting them as default text whenever one of the associated files is inserted into the author's document.
[Priority 2] Allow authors to make keyword searches of the description database in order to find relevant images.

 

3.B.5  [Priority 3] Promote accessibility in all Help examples

In addition to a help section dedicated to accessibility, accessiblity principles should be followed for all applicable markup examples in the rest of the help system. This will increase integration and help show authors that accessibility is a normal part of authoring, rather than a separate concern.

Techniques:

[Priority 3] All markup practices that require accessible solutions should appear with those solutions (ex. IMG elements should appear with "alt"-text)
[Priority 3] Lower priority accessibility solutions should also be included to increase the wider acceptance of these standards.

 

3.C Accessibility Task automation

Guiding Principle: The power of automation should be utilized to free authors to concentrate on description writing and other higher-level aspects of Web accessibility.

3.C.1  [Priority 1] Allow the user to check for and correct accessibility problems automatically

Many authoring tools allow their users to create markup documents with little, or no knowledge about the underlying structure of the language.

Techniques:

[Priority 1] In order to ensure that documents are made accessible according to the WAI Accessibility Guidelines: Page Authoring every authoring tool must include an automated tool which identifies and helps correct accessibility problems
[Priority 1] The correcting tool must be designed in such a way that authors can correct accessibility problems without necessarily understanding either the underlying structure of the language or the details of markup accessibility.

 

3.C.2  [Priority 1] Ensure that all markup inserted through the user interface is accessible

If markup is automatically generated by an invisible process, the author will be unaware of the accessiblity status of the final product unless they expend extra effort to make appropriate corrections by hand.  Since most authors are unfamiliar with accessibility, these problems are likely to remain.

Techniques:

[Priority 1] Automated markup insertion functions should always make use of appropriate accessible solutions, even if this means presenting the author with extra prompts for necessary information or structure.
[Priority 1] Automatic tools should always make use of algorithms that produce accessible markup.

 

3.C.3  [Priority 1] Ensure that conversion tools produce accessible markup

Many applications feature the ability to convert documents from other formats (e.g., Rich Text Format) or proprietary formats into a markup format, such as HTML. This process is usually hidden from the user's view and often creates inaccessible documents. Note: It is likely that the creation of accessible pages will necessitate requesting information from the author during the conversion process.  In addition, changes may have to be made to the appearance of the document..

Techniques:

[Priority 1] Conversion utilities should avoid generating documents that contravene the WAI Accessibility Guidelines: Page Authoring.

 

3.C.4  [Priority 1] Avoid removing or modifying any of the existing structure or descriptive content of documents

When a document is created in one author tool and then opened in another, the markup is often changed to allow more efficient editing and manipulation. Unfortunately, these modifications often have the side-effect of removing markup required for accessibility.

Techniques:

[Priority 1] Authoring tools should never remove or modify structure or content that is necessary for accessibility.
[Priority 1] Authoring tools are allowed to change a document to make it more accessible.
[Priority 1] Authoring tools must allow users to know when any changes are made.

 


4 Guidelines for Ensuring an Accessible Authoring Environment

Section Editors: J. Treviranus

Web authors have a broad range of skills and needs. Guidelines in this section address the accessibility of the authoring tools to web authors. Authoring tools, like other software applications can be made accessible in two ways:

  1. Through built in adjustability (options regarding the method of
    displaying information and controlling the application),
  2. Through compatibility with third party assistive technology (e.g., text
    to speech devices or alternative keyboards).

Authoring tools are similar to and frequently include the functionality of user agents. Most of the guidelines for providing access to the authoring tool are covered in the WAI Guidelines: User Agent. Authoring tools should therefore comply with the User Agent Guidelines. Issues not addressed by the User Agent Guidelines are related to the additional and unique functionality
of authoring tools.

4.1 Optional Views of the Web Page to be Edited

When creating or editing a web page the desired ultimate rendering of the page may not be optimal for creating and editing.

[Priority 1] The authoring tools should support at least two views:

  1. an authoring/editing view
  2. apublishing or browser view, (similar to the normal and page view or print preview of
    popular word processors).

[Priority 1] In the authoring/editing view the font size, letter and line spacing and font and background color should be independent of the final format of the document.

4.2 Text representation of Tags

Graphically represented tags cannot be identified by third party assistive technologies that translate text to Braille, speech or large print.

[Priority 1] Authors should be provided the option of displaying the tags in a text format.
[Priority 1] The text format should include the greater than and less than brackets to help to distinguish the tag from the remainder of the document.

4.3 Text representation of Site Map

Graphic representation of web pages or web site elements in site management tools cannot be identified by third party assistive technologies that translate text to Braille, speech or large print.

[Priority 1] Authors should be given the option of displaying the site map in text form (as a structured tree file).

4.4 Control of Cursor movement and Block Selection

To edit a document, authors require accurate and efficient control of cursor movement. Many authors are unable to use a mouse or similar pointing device.

[Priority 1] In addition to the standard cursor movement keys, authoring tools should provide keyboard commands to move the insertion cursor or begin and extend a selection, these keyboard commands should include movement or extension:

The common feature of automatically extending a selected block can be confusing to users who do not see the screen.

[Priority 1] Authors should be given the option of turning this feature off.
[Priority 1]  To allow third party assistive technologies to find and follow the cursor, the cursor must be created using standard OS controls.

4.5 Dialog Box and Control Pallete Access

Dialog boxes and palletes depend upon visual conventions and visual placement to communicate function and structure. For users who cannot see the dialog box or who cannot see the dialog box in its entirety, this structure and functionality is not communicated.

[Priority 1] Be consistent in the placement of text labels relative to the associated text input fields, radio buttons, check boxes or other controls (i.e. always to the left, right, above or below). Also be consistent throughout the authoring tool.
[Priority 1] Insure that the order of tabbing through the dialog or pallete is logical.
[Priority 1] Provide keyboard shortcuts to directly select controls or buttons.
[Priority 1] Use structural tools available in SDKs and APIs to organize interface elements or controls.
[Priority 1] Provide text labels for graphically represented controls or pallete choices (this can be done through mechanisms such as tool tips).


5 Authoring Tool Techniques

5.1 Alert Techniques

The act of attracting the user's attention is an important issue for this document.   The way in which a user is alerted, prompted, warned, etc. will influence their view of the the tool as well as their opinion regarding the issue of accessibility itself.   Within the document, emphasis is placed on integrating accessibility into the feel of the authoring tool's user interface (3.A.6 Integrate accessibility features naturally [Priority 2]) and allowing the author the freedom to decide when and how accessibility will be addressed (3.A.2 Allow authors to configure the level of accessibility awareness [Priority 1]).

The following is a partial list of sample alert possibilities with a short definition and a brief discussion of their advantages and disadvantages. These recommendations are meant only as a guide, since the actual implementation will depend on the look and feel of the authoring tool itself.

Prompts
Prompts are simple requests for information before a markup structure has been finalized.  For example, an "alt"-text entry prompt in an image insertion dialog. Prompts are relatively non-obstrusive and are address a problem before it has been committed.  However, once the user has ignored the prompt its message is unavailable.
 
Interuptive warnings
Interuptive warnings are informative messages that interupt the edit process for the user.  For example, the interuptive warnings are often presented when a user's action could cause a loss of data.  Interuptive warnings allow problems to be brought to the user's attention immediately.  However, users may resent the constant delays and forced actions.  Many people prefer to finish expressing an idea before returning to edit its format.
 
Non-obtrusive Warnings
Non-obtrusive warnings are alerts such as icons, underlines, and gentle sonification that can be presented to the user without necessitating immediate action. For example, in many word processors misspelled text is highlighted without forcing the user to make immediate corrections. These warnings allow users to continue editing with the knowledge that problems will be easy to identify at a later time. However, users may become annoyed at the extra formatting or may choose to ignore the warnings altogether.
 
Warning Tools
Warning tools allow a batch detection process to address all problems at a given time.   The timing of the batch detection might be determined by the user as in the case of a word processor spell checker or by the necessity of ensuring proper synax before a programming compile.  Warnings tools allow the user unfettered freedom to edit their document and a centralized detection ability within which correction tools are often integrated.  However, allowing the user to leave all the accessibility problems to the end might mean that the user is presented with an extensive list that might include important organizational changes.

 


6 Sample Implementations

The following sample implementations are examples of how authoring tools might be modified to take accessibility into account. Each module deals with a serious accessible authoring issue: (1) "alt"-text, (2) tables, and (3) format conversion. Each module outlines possible strategies for supporting the production of documents that are accessible with respect to these issues.  In addition, sample warning and help text is included.

6.1 HTML4.0 "Alt"-Text Module

Section Editors: Richards, Treviranus

"Alt"-text is generally considered the most important aid to accessibility. For this reason, the "alt"-text Section of the WAI Accessibility Guidelines: Page Authoring should receive special emphasis both within the user interface and within the Help system.

6.1.1 Sample Support Strategies

The following strategy deals exclusively with images. However, the strategy could just as easily apply to the other elements that require "alt"-text.

6.1.2 Images (IMG)

Sample Warning Text:
"The IMG element that has just been inserted requires "alt"-text."
Important Points for Help File Text:
Images are the most common inaccessible elements on the web.
Screen readers, used by people with visual disabilities, cannot access the image content (including any graphically presented text).
Users of text only browsers or slow connections often navigate with Image Loading turned off.
Images can be made more accessible using the "alt" (alternate text) attribute of the IMG element to add a short textual description, which can be displayed in place of the image by text-based browsers and graphical browsers whose image loading has been disabled.
Refer to WAI Accessibility Guidelines: Page Authoring Techniques Document for ""alt""-text help file authoring tips:

6.1.3 Applets

Sample Warning Text
"The APPLET element that has just been inserted requires "alt"-text"
Important Points for Help File Text
The APPLET element is deprecated, so it should be avoided.
If it is used, the APPLET element should include an "alt"-text that describes its function and content.
Alternate textual presentations of the content should also be made available.

6.1.4 Image Maps (Client-Side and Server-Side)

Sample Warning Text
"The image map that has just been inserted requires "alt"-text"
Important Points for Help File Text
Image maps are a very popular and effective way of conveying information.
To access an image map, a user requires a graphical browser, a fast connection as well as the physical ability to see the screen and move a mouse pointer.
Client-side image maps (that use the AREA element to define their links) can be accessed by keyboard control within several browsers.  If "alt"-text is provided for each link then these image maps become accessible to people with visual impairments.   Therefore, it is recommended that you convert any server-side image maps into client-side image maps.
It is always recommended that a textual listing of the links within all server-side and client-side image maps for users with older browsers or slow connections be provided..

6.1.5 Image Map Links (AREA)

Sample Warning Text
"The image map link (AREA) that has just been inserted requires "alt"-text"
Important Points for Help File Text
The AREA element defines the individual link hotspots within a client-side image map.
Some browsers have a keyboard function that allows users to TAB through all the links on a page, including each AREA. This feature is important for users with visual or mobility disabilities, who have difficulty controlling a mouse effectively.
In order for a client-side image map to be accessible, each AREA element must have an "alt"-text description that describes the function of the link.
"Alt"-text for the full image map is still required to tell the user that the image is an image map. This text should also emphasize whether there are alternative text links or if the reader should rely on the alt-text for the AREAs.
A descriptive text file may also be used to give users the full flavour of the image map's design and purpose.

6.1.6 Sample Automated Tools

6.1.6.1 ALT Text Registry

This tool does not have a visual window presence as far as the user is concerned. It works by saving an association between every "alt"-text label that a user writes with the name of the image, applet, image map, or image map link.  Then, whenever one of these elements is inserted, the file name information of the object is checked against the registry association file. If a match is found, then the pre-written "alt" text is displayed as a default choice, allowing users to avoid the repetition of writing multiple descriptions for the same image. The ability to store several descriptions in different languages might also be supported. In more sophisticated implementations, the tool may include a prediction algorithm that takes into account the recency of the "alt"-text, name similarity, and target similarity when searching for matches.

This tool has the curb-cut advantage that the descriptions (especially the professionally written ones that come with bundled images) will allow users to search images using keyword searches, thereby simplifying the task of finding appropriate images.

6.1.6.2 Server-Side to Client-Side Image Map Converter

This tool takes the page containing the Server-Side image map as well as the map file as input. It converts the information in the map file into AREA elements within a MAP element placed in the document.  The author will be prompted for alt-text for the full image (if it is absent) and for each link.  If the map file contains link comments, these will be used as default "alt"-text.

6.1.6.3 Description Text Editor

This tool is a dialog based utility that allows users to include descriptive text without necessarily knowing how to format it properly.  The editor will prompt the author for a description, while displaying the image for easy reference. Then the author's description can be used (adter spell checking) to create a new HTML file which is linked from the image by way of the LONGDESC attribute of IMG. Legacy implementations may also choose to support d-links.


6.2 HTML4.0 Tables Module

Section Editors: Bingham, ???


6.3 HTML4.0 File Conversion Module

Section Editors: Richards, Treviranus, ???


7 Acknowledgments

8 References

[HTML40]
"HTML 4.0 Recommendation", D. Raggett, A. Le Hors, and I. Jacobs, eds. The HTML 4.0 Recommendation is available at:
http://www.w3.org/TR/REC-html40/.
[CSS1]
"CSS, level 1 Recommendation", B. Bos, H. Wium Lie, eds. The CSS1 Recommendation is available at:
http://www.w3.org/TR/REC-CSS1-961217/.
[CSS2]
"CSS, level 2 Recommendation", B. Bos, H. Wium Lie, C. Lilley, and I. Jacobs, eds. The CSS2 Recommendation is available at:
http://www.w3.org/TR/REC-CSS2/.
[WAI-PAGEAUTH]
"WAI Accessibility Guidelines: Page Authoring", G. Vanderheiden, W. Chisholm, and I. Jacobs, eds. These guidelines for designing accessible documents are available at:
http://www.w3.org/TR/WD-WAI-PAGEAUTH.
[Page Authoring Techniques]
"WAI Accessibility Guidelines: Page Authoring Techniques", G. Vanderheiden, W. Chisholm, and I. Jacobs, eds. These guidelines for designing accessible documents are available at:
http://www.w3.org/WAI/wai-gl-techniques.
[CSS2-ACCESS]
"WAI Resources: CSS2 Accessibility Improvements", I. Jacobs and J. Brewer, eds. This document, which describes accessibility features in CSS2, is available at:
http://www.w3.org/WAI/References/CSS2-access.
[HTML4-ACCESS]
"WAI Resources: HTML 4.0 Accessibility Improvements", I. Jacobs, J. Brewer, and D. Dardailler, eds. This document, which describes accessibility features in HTML 4.0, is available at:
http://www.w3.org/WAI/References/HTML4-access.
[Access Aware Authoring Tools]
"The Three -tions of Accessibility-Aware HTML Authoring Tools", J. Richards. Available at:
http://www.utoronto.ca/atrc/rd/hm/3tions.htm.

Copyright © 1998 W3C (MIT, INRIA, Keio ), All Rights Reserved.