Issue #SCB2311

Daniel Ammon <[email protected]> Tue, 11 Mar 2008 12:14:00 +0100 (CET)
Newsgroups gmane.comp.java.scarab.issues
Message-ID <[email protected]>
Activity report on

  *Defect SCB2311 - Long text entered in Firefox fails to wrap when viewed in Internet Explorer*
 
  Scarab Link: http://www.solitone.org/scarab/issues/id/SCB2311
  Module: Scarab


  Activity generated by  Daniel Ammon ([email protected])  at 03/11/2008 12:12



  *Comments*
  - By Daniel Ammon - 03/11/2008 12:12 ---
  "Well, I found the same problem here. I think everybody is able to reproduce it, since this tracker shows the same symptoms. It seems it all depends on the 0.21-Feature "render-engine for comments". Now the <pre>-tag is used for comments, this wasn`t the case in 0.20. That had its own flaws, but this one is worse. There is some CSS-Code that should make auto-word-wrap work for all browsers, but apparently it doesn`t:

/*
   provide a cross browser compatible pre which uses auto 
   word wrap for long lines: 
*/
pre {
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: pre-wrap;
  word-wrap: break-word;
}

Personally I just would like to know how to make those "<pre>"-tags around the comments dissapear."