Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / 7152-1.html
blob184e2e3f47a93b072d7733d36cdc95f68910b816
1 <html>
2 <head>
3 <title>REGRESSION: Select All does not highlight table if it's last in the document</title>
4 <script src=../editing.js type="text/javascript"></script>
5 <script>
6 function editingTest() {
7 selectAllCommand();
9 </script>
10 </head>
11 <body id="test" contenteditable="true" onLoad="runEditingTest();">
12 <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 LayoutView::setSelection for a loop because it assumed the end of a selection would be inside an atomic node.</p>
13 <hr>
14 <table border="1" ><tr><td>This should be selected.</td></tr><tr><td>This should be selected.</td></tr></table>
15 </body></html>