Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / insert-list-infinite-loop2.html
blob2a11d33a0b526ee648b8abeec6aa2a07b27d4724
1 <!DOCTYPE html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <body>
5 <div id="log"></div>
6 <table contenteditable="true"><tbody><tr><td>
7 <table><tbody><tr><td>
8 <ol id="ol"><li>AAA<br><br></li><li><br></li><li>BBB<br>CCC</li></ol>
9 </td></tr></tbody></table>
10 DDD<div style="-webkit-user-select: none;"></div><div style="display: inline-block; border:solid;"></div>
11 </td></tr></tbody></table>
12 <script>
13 test(function () {
14 getSelection().selectAllChildren(ol);
15 document.execCommand('insertOrderedList');
16 });
17 </script>
18 </body>