Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / inserting / insert-div-025.html
blob739e5f6c6f81adb5b36bf35c5b86877a2122afa1
1 <html>
2 <head>
4 <style>
5 .editing {
6 border: 2px solid red;
7 padding: 12px;
8 font-size: 24px;
10 .explanation {
11 border: 2px solid blue;
12 padding: 12px;
13 font-size: 24px;
14 margin-bottom: 24px;
16 </style>
17 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
19 <script>
21 function editingTest() {
22 for (i = 0; i < 4; i++)
23 moveSelectionForwardByCharacterCommand();
24 insertParagraphCommand();
27 </script>
29 <title>Editing Test</title>
30 </head>
31 <body>
32 <div class="explanation">
33 Should see "foo" and "bar" each in a separate red box. Note that the "foo" text is really "foo ".
34 There <b>must</b> be a space at the end of the line.
35 </div>
37 <div contenteditable="true" id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
38 <div id="test" class="editing" spellcheck="false">foo bar</div>
39 </div>
41 <script>
42 runEditingTest();
43 </script>
45 </body>
46 </html>