Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / deleting / merge-paragraph-from-address.html
blob1e3f1401e5d64b038ee329872ec261c2d9f83575
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <p id="description">This tests deleting line break before address.
5 WebKit should not cancel styles added by address by those of document's default style.</p>
6 <div id="test" contenteditable>
7 hello
8 <address>world</address>
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>