Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / deleting / merge-paragraph-into-blockquote.html
blob531c63f6785072d5bf044461016fbf4afc521505
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <p id="description">This tests deleting line break after blockquote.
5 WebKit should not cancel styles added by blockquote by those of document's default style.</p>
6 <div id="test" contenteditable>
7 <blockquote>hello</blockquote>
8 world
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 moveSelectionForwardByLineBoundaryCommand();
17 moveSelectionForwardByCharacterCommand();
18 deleteCommand();
20 Markup.description(document.getElementById('description').textContent);
21 Markup.dump('test');
24 runEditingTest();
25 </script>
26 </body>
27 </html>