Initial commit, very few changes from orca 45. Added xfce4-notification daemon support.

This commit is contained in:
Storm Dragon
2024-10-16 17:06:34 -04:00
parent cef8363cfd
commit a523205ac2
1447 changed files with 1537893 additions and 2 deletions

View File

@ -0,0 +1,25 @@
<html>
<body>
<p>Elements with titles and descriptions</p>
<p>
<a href="foo" title="Title of the Foo link.">Foo</a>,
<a href="bar" title="Title of the Bar link." aria-describedby="description">Bar</a>, and
<a href="baz" title="Title of the Baz link.">Baz</a>.
</p>
<p>Checkboxes without labels:<br />
<input type="checkbox" name="color1" value="black" title="Title of the Black checkbox">Black
<input type="checkbox" name="color1" value="white" title="Title of the White checkbox" aria-describedby="description">White
<input type="checkbox" name="color1" value="grey" title="Title of the Grey checkbox">Grey
</p>
<p>Checkboxes with html labels:<br />
<input type="checkbox" name="color2" value="black" id="black" "title="Title of the Black checkbox">
<label for="black">Black</label>
<input type="checkbox" name="color2" value="white" id="white" title="Title of the White checkbox" aria-describedby="description">
<label for="white">White</label>
<input type="checkbox" name="color2" value="grey" id="grey" title="Title of the Grey checkbox">
<label for="grey">Grey</label>
</p>
<div id="description" aria-hidden="true">ARIA description text.</div>
</body>
</html>