﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7146	WebKit: pasting block elements results in an extra div	Wiktor Walc		"Confirmed on both Safari and Chrome, on Mac and Windows.

=== Steps to reproduce ===

 - start with
{{{
<h1>
         Heading1</h1>
}}}
 - copy the first line, press enter and paste it below
 - result: heading is surrounded with a div tag.

 {{{
 <h1>
         Heading1</h1>
 <p>
         &nbsp;</p>
 <div style=""font-family: Arial, Verdana, sans-serif; font-size: 12px;
 color: rgb(34, 34, 34); background-color: rgb(255, 255, 255); "">
         <h1>
                 Heading1</h1>
 </div>
 }}}

 The result in Chrome 9.0.597.94 is similar, but note the '''extra `<meta>` tag''':
 {{{
 <h1>
         Heading1</h1>
 <p>
         &nbsp;</p>
 <meta charset=""utf-8"" />
 <div style=""font-family: Arial, Verdana, sans-serif; font-size: 12px;
 color: rgb(34, 34, 34); background-color: rgb(255, 255, 255); "">
         <h1>
                 Heading1</h1>
 </div>
 }}}
"	Bug	closed	Normal		Core : Pasting	3.0	fixed	WebKit IBM VendorFix	satya_minnekanti@…
