Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / inserting / 5607069-2.html
blobb4a09f6c6265a57ca49e1b13c74214dfa2f42f1f
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script src="../../resources/dump-as-markup.js"></script>
5 <div id="div" contenteditable="true"><input type="text"><input type="text"></div>
6 <script>
7 Markup.description("This tests for a bug where InsertLineBreak would insert a '\\n' instead of a <br> if the caret was set just before an input field. There should be a br element between two input elements.");
8 div = document.getElementById("div");
9 window.getSelection().collapse(div, 1);
10 document.execCommand("InsertLineBreak");
11 Markup.dump(div);
12 </script>
13 </body>
14 </html>