blob: eff0f9edf35315a82d560231d682ad345d65dd32 [file] [log] [blame]
<!DOCTYPE html>
<body>
<script>
enablePixelTesting = true;
</script>
<script src="../../js/resources/js-test-pre.js"></script>
<script src="../resources/common.js"></script>
<input type="radio">
<div id="console"></div>
<script>
eventSender.mouseMoveTo(800, 600);
description('Clicking on a form control should focus on it.');
var target = document.querySelector('input');
target.addEventListener('focus', function() {
testPassed('Focus event was dispatched.');
}, false);
clickElement(target);
</script>
<script src="../../js/resources/js-test-post.js"></script>
</body>