Skip to content

Commit

Permalink
Create Null ARIA attribute.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mraccess77 committed Feb 3, 2024
1 parent f7ab142 commit fb3fec3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions examples/Fails/Null ARIA attribute.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>ARIA Details Example</title>
</head>

<body>
<main>
<p id="info" aria-details="details">This is some information.</p>
<div id="details" style="display: none;">
<p>This is the detailed explanation of the information.</p>
</div>
<p id="info" aria-details="">This is some information.</p>
<p id="info" aria-details="ab">This is some information.</p>
</main>
</body>

</html>

0 comments on commit fb3fec3

Please sign in to comment.