Created
May 14, 2020 20:25
-
-
Save skorasaurus/b586ea4bc005bf6ee274ccc4c0183ff1 to your computer and use it in GitHub Desktop.
NVDA test case; thanks to Scott O'hara, weston thayer, and andrew nevins for assisting in debugging
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Max's pizza</title> | |
</head> | |
<body> | |
<form> | |
<fieldset> | |
<legend> | |
What is your favorite pizza topping? | |
</legend> | |
<div > | |
<input type="radio" name="test-input" id="test-input-1" checked=""> | |
<label for="test-input-1"> | |
escargot | |
</label> | |
</div> | |
<div > | |
<input type="radio" name="test-input" id="test-input-2"> | |
<label for="test-input-2"> | |
Pepperoni | |
</label> | |
</div> | |
<div > | |
<input type="radio" name="test-input" id="test-input-3"> | |
<label for="test-input-3"> | |
green peppers | |
</label> | |
</div> | |
</fieldset> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment