Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / insert-list-with-progress-crash.html
blobfeb088a3cb0fe599afc38cfefdfea4df23bc49ae
1 <!DOCTYPE html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <progress hidden="false">
5 <textarea></textarea>
6 </progress>
7 <select></select>
8 <script>
9 test(function() {
10 document.designMode = 'on';
11 document.execCommand('SelectAll');
12 document.execCommand('InsertOrderedList');
13 }, 'position-at-middle-of-editing-ignore-content');
14 </script>