2 <html style=
"background: transparent; text-decoration: none">
4 <p id=
"description">This tests merging paragraphs inside a document with background: transparent in html element's inline style declaration.
5 WebKit should not generate a span with background-color property in such cases.
</p>
6 <div id=
"container" contenteditable
>
7 <p id=
"destination">hello
</p>
8 <p id=
"target">world
</p>
10 <script src=
"../../resources/dump-as-markup.js"></script>
13 Markup
.description(document
.getElementById('description').textContent
);
15 document
.getElementById('container').focus();
16 var target
= document
.getElementById('target');
17 getSelection().collapse(target
, 0);
18 document
.execCommand('Delete', false, null);
20 Markup
.dump(document
.getElementById('container'));