blob: 5c857dcd207335d69e1e9b8c60aca8a0a572672d [file] [log] [blame]
<html>
<head>
<script>
function runTest() {
if (window.testRunner)
testRunner.dumpAsText();
document.getElementById('tom').checked = false;
document.getElementById('result').innerHTML = 'FAILURE';
// Simulate an option-tab, which can tab to a radio button with default preference settings.
if (window.eventSender)
eventSender.keyDown('\t', navigator.platform.indexOf('Mac') == 0 ? ["altKey"] : []);
}
</script>
</head>
<body onload="runTest()">
<input id="tom" type="radio" onfocus="document.getElementById('result').innerHTML = 'SUCCESS'" name="joe" checked>
<p>This tests that you can still focus a radio button after unchecking it by setting its checked property to false.</p>
<div id="result">TEST NOT RUN</div>
</body>
</html>