Last active
January 23, 2019 16:05
-
-
Save skingsland/24228394a12aa6e3a62c46174c2205c1 to your computer and use it in GitHub Desktop.
This file contains 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 xmlns="http://www.w3.org/1999/xhtml" lang="en-US"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<td> | |
<table> | |
<tr> | |
<td>Cell 1</td> | |
<td>This cell is NOT read by JAWS!</td> | |
</tr> | |
</table> | |
</td> | |
</tr> | |
<!-- this row is required to cause the bug, but the TD must be EMPTY --> | |
<tr> | |
<td></td> | |
</tr> | |
</table> | |
<!-- this table is required to cause the bug --> | |
<table> | |
<tr> | |
<td>second table</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment