blob: 153c248ce16cb00aa4ed0004fe99730516372556 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<object id="hidden" style="visibility:hidden;" width="50" height="50"></object>
<script>
test(function(){
var hidden = document.getElementById('hidden');
hidden.focus();
assert_not_equals(hidden, document.activeElement, 'hidden objects did not receive focus');
}, 'Hidden objects should not receive focus');
</script>