diff --git a/techniques/css/C27.html b/techniques/css/C27.html index ae4e4ef2b1..a3f1360977 100644 --- a/techniques/css/C27.html +++ b/techniques/css/C27.html @@ -21,7 +21,7 @@

Description

There may also be situations where the visually presented order is necessary to the overall understanding of the page, and if the source order is presented differently, it may be much more difficult to understand.

When the source order matches the visual order, everyone will read the content and interact with it in the same (correct) order.

-

The tabindex attribute in HTML has two functions. One is to make an element focusable and the other is to assign the element a position in the focus order. A tabindex of 0 makes an element focusable, but adds it to the focus order in the order of source elements. The focus order will follow positive values of tabindex in ascending order. Setting tabindex values that result in an order different from the order of elements in the Document Object Model (DOM) can mean the order is incorrect for users of assistive technologies. This is largely because the tabindex property is specified in the HTML or XHTML and not the CSS. This may change in future specifications. It may also differ from the visual presentation order.

+

The tabindex attribute in HTML has two functions. One is to make an element focusable and the other is to assign the element a position in the focus order. A tabindex of 0 makes an element focusable, but adds it to the focus order in the order of source elements. The focus order will follow positive values of tabindex in ascending order. Setting tabindex values that result in an order different from the order of elements in the Document Object Model (DOM) can mean the order is incorrect for users of assistive technologies. This is largely because the tabindex property is specified in the HTML and not the CSS. This may change in future specifications. It may also differ from the visual presentation order.

diff --git a/techniques/failures/F40.html b/techniques/failures/F40.html index 9a37db85e6..c73100bb25 100644 --- a/techniques/failures/F40.html +++ b/techniques/failures/F40.html @@ -56,8 +56,8 @@
diff --git a/techniques/failures/F44.html b/techniques/failures/F44.html index 50804d0779..10f4fa21bd 100644 --- a/techniques/failures/F44.html +++ b/techniques/failures/F44.html @@ -62,8 +62,9 @@

Resources

\ No newline at end of file diff --git a/techniques/failures/F46.html b/techniques/failures/F46.html index 614c4a14ab..84515bf18b 100644 --- a/techniques/failures/F46.html +++ b/techniques/failures/F46.html @@ -18,7 +18,7 @@ scope attributes -

Assistive technologies use the structure of an HTML or XHTML table to present data to +

Assistive technologies use the structure of an HTML table to present data to the user in a logical manner. The th element is used to mark the column and row headers of the table. A screen reader uses the information in th elements to speak the header information that diff --git a/techniques/failures/F58.html b/techniques/failures/F58.html index 090a84500d..4a80faa6d1 100644 --- a/techniques/failures/F58.html +++ b/techniques/failures/F58.html @@ -30,8 +30,7 @@ response.setContentType("text/html"); PrintWriter out = response.getWriter(); response.setHeader("Refresh", "10; URL=TargetPage.html"); -out.println("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" - \"https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"); +out.println("<!DOCTYPE html>"); out.println("<html><head><title>Redirect</title></head><body>"); out.println("<p>This page will redirect you in 10 seconds.</p>"); out.println("</body></html>"); diff --git a/techniques/failures/F69.html b/techniques/failures/F69.html index 1d34576250..fda9f3e2fc 100644 --- a/techniques/failures/F69.html +++ b/techniques/failures/F69.html @@ -1,5 +1,5 @@ Failure of Success Criterion 1.4.4 when resizing visually rendered text up to 200 percent causes the text, image or controls to be clipped, truncated or obscured

Failure of Success Criterion 1.4.4 when resizing visually rendered text up to 200 percent causes the text, image or controls to be clipped, truncated or obscured

ID: F69

Technology: failures

Type: Failure

When to Use

-

HTML, XHTML and CSS

+

HTML and CSS

Description

The objective of this failure condition is to describe a problem that occurs when changing the size of text causes text to be clipped, truncated, or obscured, so that it is no longer available to the user. In general, this failure occurs when there is no way for a user agent's layout engine to honor all the layout hints in the HTML at the new font size. Some of the ways in which this can occur include: