blob: 6d16473734d3736470e8cbf817a73be2ef4a871b [file] [log] [blame]
<html>
<head>
<title>REGRESSION: Select All does not highlight table if it's last in the document</title>
<script src=../editing.js type="text/javascript"></script>
<script>
function editingTest() {
selectAllCommand();
}
</script>
</head>
<body id="test" contenteditable="true" onLoad="runEditingTest();">
<p>This is a testcase for <a href="https://bugs.webkit.org/show_bug.cgi?id=7152">http://bugzilla.opendarwin.org/show_bug.cgi?id=7152</a>. Adding visible candidates after tables, at [table, numberOfChildren], threw RenderView::setSelection for a loop because it assumed the end of a selection would be inside an atomic node.</p>
<hr>
<table border="1" ><tr><td>This should be selected.</td></tr><tr><td>This should be selected.</td></tr></table>
</body></html>