Created
December 18, 2009 16:01
-
-
Save dperini/259584 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 PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title>Focus Test</title> | |
<style type="text/css"> | |
:focus { background-color: red; } | |
</style> | |
<script type="text/javascript"> | |
window.onload = function() { document.body.setAttribute("tabindex", "1"); }; | |
</script> | |
</head> | |
<body> | |
<p><input type="text" tabindex="2"></p> | |
<p><a href="#" tabindex="3">First link</a></p> | |
<p><a href="#" tabindex="4">Second link</a></p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment