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

25
test/html/hidden.html Normal file
View File

@ -0,0 +1,25 @@
<html>
<body>
<p>This element is not hidden.</p>
<p aria-hidden="true">This element hidden by ARIA.</p>
<p hidden>This element hidden by HTML5 hidden.</p>
<p style="display:none">This element hidden by display:none.</p>
<p style="position:absolute;left:-9999px">This element hidden by position off screen.</p>
<div>
<p>This element is in a parent which is not hidden.</p>
</div>
<div aria-hidden="true">
<p>This element is in a parent hidden by ARIA.</p>
</div>
<div hidden>
<p hidden>This element is in a parent hidden by HTML5 hidden.</p>
</div>
<div style="display:none">
<p>This element is in a parent hidden by display:none.</p>
</div>
<div style="position:absolute;left:-9999px">
<p>This element is in a parent hidden by position off screen</p>
</div>
<p>This element is not hidden.</p>
</body>
</html>