Could someone help me understand a minor issue I've encountered?
Here is an example of an HTML document:
<html>
<head>
<title></title>
<style>
body {font-family: Arial;}
</style>
</head>
<body>
<input type="radio" name="radio" />
</body>
</html>
If you open this document in Firefox (version 14.0.1) and right-click the radio button to inspect it using Firebug, you may notice that when you try to select the radio button, it quickly deselects itself. Any idea why?
It seems that removing the body style definition prevents this from happening. Also, the behavior changes if Firebug is opened in a different tab or if it's closed altogether. It's a small issue, but I'm curious to know the reason behind it.