Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / inserting / 5994480-2.html
blob1a5c3a109cb128882172c5c605ecda4cc53564e7
1 <div id="description">This tests to see if deleting an input element that starts at the start of a block adds an extra placeholder.
2 You should see a single placeholder in the block below.</div>
3 <div id="edit" contentEditable="true"><input type="text"><br></div>
4 <script src="../../resources/dump-as-markup.js"></script>
5 <script>
6 Markup.description(document.getElementById('description').textContent);
8 edit = document.getElementById("edit");
9 edit.focus();
11 document.execCommand("SelectAll");
12 document.execCommand("Delete");
14 Markup.dump('edit');
15 </script>