blob: abc5673b40c550784cd3c5992c5c089627af3171 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description('Making sure that the assert in Node::isFocusable does not fail. ' +
'https://bugs.webkit.org/show_bug.cgi?id=29210');
var div = document.createElement('div');
div.style.display = 'none';
var a = document.createElement('a');
a.href = 'http://webkit.org';
div.appendChild(a);
document.body.appendChild(div);
if (window.eventSender)
eventSender.keyDown('\t');
testPassed('No crash');
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>