blob: ae30dd016e6f43d61db5a9b8f858205c49462b8b [file] [log] [blame]
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');