Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / deleting / merge-paragraph-from-p-with-style-3.html
blobe00fd6a56aad195ad0b26ada3ab03420d0cd39ba
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <p id="description">This tests deleting line break before p.
5 WebKit preserves the inline style of the merged paragraph, and "world" should be in green.</p>
6 <div id="test" style="color:red;" contenteditable>
7 <h1>hello</h1>
8 <p><font color="red"><span style="color: green;">world</span></i></p>
9 </div>
10 </div>
11 <script src="../editing.js"></script>
12 <script src="../../resources/dump-as-markup.js"></script>
13 <script>
15 function editingTest() {
16 moveSelectionForwardByLineCommand();
17 deleteCommand();
19 Markup.description(document.getElementById('description').textContent);
20 Markup.dump('test');
23 runEditingTest();
24 </script>
25 </body>
26 </html>