Removed old tests in preparation for redesign.

This commit is contained in:
Storm Dragon
2026-01-08 00:17:37 -05:00
parent 42bfacdd2c
commit 59484782c0
967 changed files with 0 additions and 93805 deletions

View File

@@ -1,25 +0,0 @@
<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>