Remove files that should be ignored based on .gitignore

This commit is contained in:
Storm Dragon
2024-10-17 16:28:08 -04:00
parent 3278dd8a6c
commit 9569c50a0b
1448 changed files with 0 additions and 1537952 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>