Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / 5483526.html
blob7f5cc53f3928645239f7b20a16641c30b5dfa3f9
1 <p>This tests for a hang when making a list out of a selection containing a table with empty cells. There should be three list items below, one with a table and two empty.</p>
2 <div id="div" contenteditable="true">
3 <div>
4 <div>
5 <table border="1">
6 <tr><td>1</td><td>2</td><td>3</td></tr>
7 <tr><td></td><td></td><td></td></tr>
8 </table>
9 <br>
10 </div>
11 <div><br></div>
12 <div><br></div>
13 </div>
14 </div>
16 <script>
17 if (window.testRunner)
18 window.testRunner.dumpAsText();
20 document.getElementById("div");
21 div.focus();
22 document.execCommand("SelectAll");
23 document.execCommand("InsertUnorderedList");
24 </script>