Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:48:06Z http://stackoverflow.com/feeds/question/136443 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly 20 Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly? Jeff Atwood 2008-09-25T21:58:05Z 2009-09-11T23:29:41Z <p>We've noticed that IE7 has an odd behavor with code blocks posted on Stack Overflow. For example, this little code block:</p> <pre><code>public PageSizer(string href, int index) { HRef = href; PageIndex = index; } </code></pre> <p>Copy and pasted from IE7, ends up like this:</p> <pre> public PageSizer(string href, int index){ HRef = href; PageIndex = index; } </pre> <p>Not exactly what we had in mind.. the underlying HTML source actually looks fine; if you View Source, you'll see this:</p> <pre><code>&lt;pre&gt;&lt;code&gt;public PageSizer(string href, int index) { HRef = href; PageIndex = index; } &lt;/code&gt;&lt;/pre&gt; </code></pre> <p>So what are we doing wrong? Why can't IE7 copy and paste this HTML in a rational way?</p> <blockquote> <p>Update: <strong>this specifically has to do with <code>&lt;pre&gt;</code> <code>&lt;code&gt;</code> blocks that are being modified at runtime via JavaScript.</strong> The native HTML does render and copy correctly; it's the JavaScript modified version of that HTML which doesn't behave as expected. Note that copying and pasting into WordPad or Word works because IE is putting different content in the rich text clipboard compared to the plain text clipboard that Notepad gets its data from.</p> </blockquote> http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/136510#136510 -1 Answer by Armin Ronacher for Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly? Armin Ronacher 2008-09-25T22:09:36Z 2008-09-25T22:09:36Z <p>Remove the inner <code>&lt;code&gt;</code>. IE's copy/paste behavior could see that as an inline tag and forget about the visible whitespace.</p> http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/136586#136586 12 Answer by AaronSieb for Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly? AaronSieb 2008-09-25T22:25:55Z 2008-10-01T13:04:40Z <p>Here's the issue:</p> <p>Your code colorization script replaces line breaks with &lt;br /&gt; tags. When copying/pasting, IE7 apparently doesn't translate the &lt;br /&gt; tag into a linebreak like it does for the screen.</p> <p>In other words, your code becomes this:</p> <pre><code>public PageSizer(string href, int index)&lt;br /&gt;{&lt;br /&gt; HRef = href;&lt;br /&gt; PageIndex = index;&lt;br /&gt; }</code></pre> <p>But you want it to become this:</p> <pre><code> public PageSizer(string href, int index)&lt;br /&gt; {&lt;br /&gt; HRef = href;&lt;br /&gt; PageIndex = index;&lt;br /&gt; }&lt;br /&gt; </code></pre> <p>In the latest version of prettify.js on Google Code, the line responsible is line 1001 (part of recombineTagsAndDecorations):</p> <pre><code> html.push(htmlChunk.replace(newlineRe, '&lt;br /&gt;')); </code></pre> <p>Edited, based on the comments:<br /> For IE7, this is what the line should probably be changed to:</p> <pre><code> html.push(htmlChunk.replace(newlineRe, '\n')); </code></pre> <p>(Assuming newlineRe is a placeholder).</p> <p>This fix also holds up in Chrome, and FFX3... I'm not sure which (if any) browsers need the &lt;br /&gt; tags.</p> <p><strong>Update:</strong> More information in my second response:<br /> <a href="http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly#156069">http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly#156069</a></p> http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/136698#136698 1 Answer by Andrew Johnson for Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly? Andrew Johnson 2008-09-25T22:52:08Z 2008-09-29T12:38:39Z <p>This looks like a bug in IE, <em>BR</em> tags inside the <em>PRE</em> or <em>CODE</em> are not being converted into newlines in the plain text copy buffer. The rich text copy buffer is fine, so the paste works as expected for applications like <em>wordpad</em>.</p> <p>The prettify script, that colours the code, removes <strong>all</strong> the whitespace and replaces it with HTML tags for spaces and new lines. The generated code looks something like this:</p> <pre> &lt;pre&gt;&lt;code&gt;code&lt;br/&gt;&amp;nbsp;&amp;nbsp;code&lt;br/&gt;&amp;nbsp;&amp;nbsp;code&lt;br/&gt;code&lt;/code&gt;&lt;/pre&gt; </pre> <p>The <em>PRE</em> and <em>CODE</em> tags are rendered by defaults with the CSS style of <strong><em>{whitespace: pre}</em></strong>. In this case, IE is failing to turn the <em>BR</em> tags into newlines. It would work on your original HTML because IE will successfully turn actual newlines into newlines.</p> <p>In order to fix it you have 3 options. (I am presuming you want nice HTML <strong>and</strong> the ability to work well with and without javascript enabled on the client):</p> <ol> <li><p>You could place the code inside a normal div and use CSS to render it using <strong><em>{whitespace: pre}</em></strong>. This is a simple solution, although might not please an HTML markup purist.</p></li> <li><p>You could have two copies of the code, one using proper <em>PRE</em> / <em>CODE</em> tags and another in a normal div. In your CSS you hide the normal div. Using javascript you prettify the normal div and hide the pre/code version.</p></li> <li><p>Modify the prettify script to recognise that it is acting on a <em>PRE</em> or <em>CODE</em> element and to not replace the whitespace in that event.</p></li> </ol> <p><hr /></p> <p><strong>Notes:</strong></p> <ul> <li><p>What is important is not the HTML in your source, but the HTML that is generated after the prettify script has ran on it.</p></li> <li><p>This bug is still present even if the white-space mode of the <em>PRE</em> is changed to <em>normal</em> using CSS.</p></li> </ul> http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/155826#155826 0 Answer by Jeff Atwood for Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly? Jeff Atwood 2008-10-01T01:19:17Z 2008-10-01T01:19:17Z <p>bad news : none of the proposed fixes work. Modifying prettify.js around line 1000</p> <pre><code>html.push(htmlChunk.replace(newlineRe, '\n')); </code></pre> <p>This causes double-spacing in other browsers, and <em>still</em> doesn't solve the IE7 copy to notepad problem! So even if I selectively detected IE7, this "fix" doesn't fix anything.</p> <p>I guess maybe it is simply a bug in IE7 having to do with JavaScript rebuilding a <code>&lt;pre&gt;</code> element -- no matter how many \n newlines I put in there, nothing changes w/r/t to the paste to notepad behavior.</p> http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/156069#156069 0 Answer by AaronSieb for Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly? AaronSieb 2008-10-01T03:04:15Z 2008-10-01T03:12:02Z <p>@<a href="#155826" rel="nofollow">Jeff Atwood</a> It's the right idea, but the implementation still needs work. I guess my air code just didn't cut it :)</p> <p>I suspect that the fix I mentioned earlier doesn't work because prettify is doing some additional processing on the text after line ~1000 is called.</p> <p>Trying to track the content backwards from when it's added to the page, I came across this comment around line 1227:</p> <pre><code> // Replace &lt;br&gt;s with line-feeds so that copying and pasting works // on IE 6. // Doing this on other browsers breaks lots of stuff since \r\n is // treated as two newlines on Firefox, and doing this also slows // down rendering. </code></pre> <p>When I took the isIE6 condition off of the code, it mostly worked in IE7 (there was an extra line break at the top and bottom), and Firefox 3... But I'd assume that it causes issues with older versions of FFX.</p> <p>At the very least, it appears that IE7 will require \r\n, instead of just \n. Figuring out exactly what will work with which browsers will take a more extensive test setup than I have handy at the moment.</p> <p>Anyway, inserting the \r\n for IE7 appears to be basically what needs to happen. I'll keep poking around prettify to see if I can narrow it down further.</p> <p><strong>UPDATE:</strong> IE7 appears to strip newline characters (\r or \n) from strings that are assigned to an innerHTML property. It looks like they need to be added back in, around line 1227.</p> <p>A correct solution would probably mean inserting a placeholder tag around line 1000, and then replacing it around line 1227.</p> http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/159582#159582 21 Answer by Andrew Johnson for Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly? Andrew Johnson 2008-10-01T20:36:04Z 2008-10-01T20:36:04Z <p>It seems that this is a known bug for IE6 and prettify.js has a workaround for it. Specifically it replaces the BR tags with '\r\n'.</p> <p>By modifying the check to allow for IE6 or 7 then the cut-and-paste will work correctly from IE7, but it will render with a <em>newline</em> followed by a <em>space</em>. By checking for IE7 and providing just a '\r' instead of a '\r\n' it will continue to cut-and-paste and render correctly.</p> <p>Add this code to prettify.js:</p> <pre><code>function _pr_isIE7() { var isIE7 = navigator &amp;&amp; navigator.userAgent &amp;&amp; /\bMSIE 7\./.test(navigator.userAgent); _pr_isIE7 = function () { return isIE7; }; return isIE7; } </code></pre> <p>and then modify the prettyPrint function as follows:</p> <pre><code> function prettyPrint(opt_whenDone) { var isIE6 = _pr_isIE6(); + var isIE7 = _pr_isIE7(); </code></pre> <p>...</p> <pre><code>- if (isIE6 &amp;&amp; cs.tagName === 'PRE') { + if ((isIE6 || isIE7) &amp;&amp; cs.tagName === 'PRE') { var lineBreaks = cs.getElementsByTagName('br'); + var newline; + if (isIE6) { + newline = '\r\n'; + } else { + newline = '\r'; + } for (var j = lineBreaks.length; --j &gt;= 0;) { var lineBreak = lineBreaks[j]; lineBreak.parentNode.replaceChild( - document.createTextNode('\r\n'), lineBreak); + document.createTextNode(newline), lineBreak); } </code></pre> <p>You can see a <a href="http://andrjohn.myzen.co.uk/soTest/136443.html" rel="nofollow">working example here</a>.</p> <p><strong>Note:</strong> I haven't tested the original workaround in IE6, so I'm guessing it renders without the space caused by the '\n' that is seen in IE7, otherwise the fix is simpler.</p>