blob: 7f3b908d11e81fcde34222b958deb4c5bf7b4588 [file] [log] [blame]
<html>
<head>
<script src="../resources/js-test.js"></script>
</head>
<body>
<p id="description">This test makes sure that an element with a display of table-cell doesn't cause a crash when accessibility code assumes it must be a TD or TH element.</p>
<div id="console"></div>
<table></table>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var table = document.querySelector('table');
var span = document.createElement('span');
table.appendChild(span);
var div = document.createElement('div');
div.style.display = 'table-cell';
table.appendChild(div);
var input = document.createElement('input');
input.setAttribute('autofocus', 'autofocus');
div.appendChild(input);
</script>
</body>
</html>