Skip to content

Commit

Permalink
Editorial - Fixed wrong closing </p> tag on line 6265 that is causi…
Browse files Browse the repository at this point in the history
…ng the "Prettier / prettier (pull_request)" check to fail. (#2244)

SHA: 30c11b3
Reason: push, by pkra

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
giacomo-petri and github-actions[bot] committed Jun 14, 2024
1 parent ed4c2cc commit 5571b65
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@


<meta name="color-scheme" content="light">
<meta name="revision" content="2dfbe1d9575872a5f639962a61236c6b676fd0a9">
<meta name="revision" content="30c11b3d5ccd085cddc31e27a7a8373f3d87c898">
<meta name="description" content="Accessibility of web content requires semantic information about widgets, structures, and behaviors, in order to allow assistive technologies to convey appropriate information to persons with disabilities. This specification provides an ontology of roles, states, and properties that define accessible user interface elements and can be used to improve the accessibility and interoperability of web content and applications. These semantics are designed to allow an author to properly convey user interface behaviors and structural information to assistive technologies in document-level markup. This version adds features new since WAI-ARIA 1.1 [wai-aria-1.1] to improve interoperability with assistive technologies to form a more consistent accessibility model for [HTML] and [SVG2]. This specification complements both [HTML] and [SVG2].">
<style>
.hljs{--base:#fafafa;--mono-1:#383a42;--mono-2:#686b77;--mono-3:#717277;--hue-1:#0b76c5;--hue-2:#336ae3;--hue-3:#a626a4;--hue-4:#42803c;--hue-5:#ca4706;--hue-5-2:#c91243;--hue-6:#986801;--hue-6-2:#9a6a01}
Expand Down Expand Up @@ -307,16 +307,16 @@
}
},
"lint": false,
"gitRevision": "2dfbe1d9575872a5f639962a61236c6b676fd0a9",
"publishISODate": "2024-06-12T00:00:00.000Z",
"generatedSubtitle": "W3C Editor's Draft 12 June 2024"
"gitRevision": "30c11b3d5ccd085cddc31e27a7a8373f3d87c898",
"publishISODate": "2024-06-14T00:00:00.000Z",
"generatedSubtitle": "W3C Editor's Draft 14 June 2024"
}</script>
<link rel="stylesheet" href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED"></head>
<body class="h-entry" data-cite="dom accname-1.2 core-aam-1.2 infra HTML"><div class="head">
<p class="logos"><a class="logo" href="https://www.w3.org/"><img crossorigin="" alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72">
</a></p>
<h1 id="title" class="title">Accessible Rich Internet Applications (WAI-ARIA) 1.3</h1>
<p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">W3C Editor's Draft</a> <time class="dt-published" datetime="2024-06-12">12 June 2024</time></p>
<p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">W3C Editor's Draft</a> <time class="dt-published" datetime="2024-06-14">14 June 2024</time></p>
<details open="">
<summary>More details about this document</summary>
<dl>
Expand Down Expand Up @@ -6528,11 +6528,10 @@ <h4 class="role-name" title="progressbar" aria-describedby="desc-progressbar"><c
<p>An <a data-type="dfn" href="https://dom.spec.whatwg.org/#concept-element">element</a> that displays the progress status for tasks that take a long time.</p>
<p>A progressbar indicates that the user's request has been received and the application is making progress toward completing the requested action.</p>
<p>Authors <em class="rfc2119">MAY</em> set <a href="https://w3c.github.io/aria/#aria-valuemin" class="property-reference"><code>aria-valuemin</code></a> and <a href="https://w3c.github.io/aria/#aria-valuemax" class="property-reference"><code>aria-valuemax</code></a> to indicate the minimum and maximum progress indicator values. Otherwise, their implicit values follow the same rules as <code>&lt;input type="<code><a data-link-type="attr-value" data-type="attr-value" href="https://html.spec.whatwg.org/multipage/input.html#attr-input-type-range-keyword">range</a></code>"&gt;</code> in <abbr title="Hypertext Markup Language">HTML</abbr>:</p>
<ul>
<li>If <code>aria-valuemin</code> is missing or not a <a href="#valuetype_number">number</a>, it defaults to 0 (zero).</li>
<li>If <code>aria-valuemax</code> is missing or not a <a href="#valuetype_number">number</a>, it defaults to 100.</li>
</ul>
<p></p>
<ul>
<li>If <code>aria-valuemin</code> is missing or not a <a href="#valuetype_number">number</a>, it defaults to 0 (zero).</li>
<li>If <code>aria-valuemax</code> is missing or not a <a href="#valuetype_number">number</a>, it defaults to 100.</li>
</ul>
<p>The author <em class="rfc2119">SHOULD</em> supply a <span>value</span> for <a href="https://w3c.github.io/aria/#aria-valuenow" class="property-reference"><code>aria-valuenow</code></a> unless the value is indeterminate, in which case the author <em class="rfc2119">SHOULD</em> omit the <a href="https://w3c.github.io/aria/#aria-valuenow" class="property-reference"><code>aria-valuenow</code></a> attribute.
Authors <em class="rfc2119">SHOULD</em> update this value when the visual progress indicator is updated. If the <code>progressbar</code> is describing the loading progress of a particular region of a page, authors <em class="rfc2119">SHOULD</em> both use <a href="https://w3c.github.io/aria/#aria-describedby" class="property-reference"><code>aria-describedby</code></a> to reference the progressbar status, and set the <a href="https://w3c.github.io/aria/#aria-busy" class="state-reference"><code>aria-busy</code></a> attribute to <code>true</code> on the region until it is finished loading. It is not possible for the user to alter the value of a <code>progressbar</code> because it is always read-only.</p>
<div class="note" role="note" id="issue-container-generatedID-26"><div role="heading" class="note-title marker" id="h-note-26" aria-level="4"><span>Note</span></div><p class="">Assistive technologies generally will render the value of <a href="https://w3c.github.io/aria/#aria-valuenow" class="property-reference"><code>aria-valuenow</code></a> as a percent of a range between the value of <a href="https://w3c.github.io/aria/#aria-valuemin" class="property-reference"><code>aria-valuemin</code></a> and <a href="https://w3c.github.io/aria/#aria-valuemax" class="property-reference"><code>aria-valuemax</code></a>, unless <a href="https://w3c.github.io/aria/#aria-valuetext" class="property-reference"><code>aria-valuetext</code></a> is specified.</p></div>
Expand Down

0 comments on commit 5571b65

Please sign in to comment.