Last modified: 2012-01-22 18:56:24 UTC
BUG MIGRATED FROM SOURCEFORGE http://sourceforge.net/tracker/index.php?func=detail&aid=959622&group_id=34373&atid=411192 Originally submitted by Gordon Tran (buffered) 2004-05-24 20:24 When adding the leading space for preformatted text, the diff will attempt to highlight the new space in red, which has no visible effect. http://test.wikipedia.org/w/index.php? title=TestWikipedia:Sandbox&curid=19088&diff=2213&oldi d=2212
*** Bug 305 has been marked as a duplicate of this bug. ***
This can be fixed with .diffchange { text-decoration: underline; } or .diffchange { background-color: something other than default; } plus td.diff-addedline, td.diff-deletedline, td.diff-context { white-space: pre-wrap; white-space: -moz-pre-wrap; } The latter point (which is a necessary component) will only work on some browsers, however, such as Opera and Gecko-based browsers. For a universal fix, spaces would have to be converted automatically to . A stylesheet solution packaged in by default would be better than nothing, though, in my opinion, and next-gen browsers will hopefully all support pre-wrap (although IE 7 doesn't yet, at least).
*** This bug has been marked as a duplicate of bug 13466 ***