Skip to content

Instantly share code, notes, and snippets.

@skorasaurus
Created May 14, 2020 20:25
Show Gist options
  • Save skorasaurus/b586ea4bc005bf6ee274ccc4c0183ff1 to your computer and use it in GitHub Desktop.
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
<!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