Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-empty-table-cell.html
blobe413228c0c94fdf34de1139fa0f2fa87c020d286
1 <p>This tests for a crash when indenting an empty TD.</p>
2 <div contenteditable="true">
3 <table>
4 <tbody>
5 <tr>
6 <td id ="indent"></td>
7 </tr>
8 </tbody>
9 </table>
10 </div>
11 <script>
12 if (window.testRunner)
13 window.testRunner.dumpAsText();
14 indent = document.getElementById("indent");
15 window.getSelection().collapse(indent, 0);
16 document.execCommand("indent");
17 </script>