Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / 5481523.html
blob9d22cfc8a863ab5368720cb8a2e24b7effece0ea
1 <p>This tests for a hang when indenting a fully selected table twice. You should see a twice indented table, with four cells, below.</p>
3 <div id="div" contenteditable="true">
4 <table border="1">
5 <tr><td>One</td><td>Two</td></tr>
6 <tr><td>Three</td><td>Four</td></tr>
7 </table>
8 </div>
10 <script>
11 div = document.getElementById("div");
12 div.focus();
13 document.execCommand("SelectAll");
14 document.execCommand("Indent");
15 document.execCommand("Indent");
16 </script>