Changes between Initial Version and Version 4 of Ticket #8373
- Timestamp:
- Sep 13, 2011, 10:57:22 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8373
-
Property
Status
changed from
new
topending
-
Property
Status
changed from
-
Ticket #8373 – Description
initial v4 1 This issue was reported by one of our users in support channel (Topic: Problem with background-image in table properties) 1 **The issue is that in IE9 extra and unnecessary "e; are added around url.** 2 2 3 To reproduce 4 1. In IE9, switch to source and paste in the following code: 5 {{{ 6 <table border="0" cellpadding="0" cellspacing="0" height="145" 7 style="background-image: url( 8 http://www.sauvons-les-animaux.com/images/l/log/logo-22-ligne-blancheff.png);" 9 width="170"> 10 <tbody> 11 <tr> 12 <td> 13 test</td> 14 </tr> 15 </tbody> 16 </table> 17 }}} 18 2.Switch WYSIWYG and back to source 19 {{{ 20 style="background-image: url( 21 http://www.sauvons-les-animaux.com/images/l/log/logo-22-ligne-blancheff.png);" 22 }}} 23 will be changed to 3 In user's case such code: 24 4 {{{ 25 5 style="background-image: url(" 26 http://www.sauvons-les-animaux.com/images/l/log/logo-22-ligne-blancheff.png");" 6 http://www.sauvons-les-animaux.com/images/l/log/logo-22-ligne-blancheff.png");" 27 7 }}} 28 8 9 was saved in DB what later was transformed to 10 {{{ 11 style="background-image: url(" 12 http://www.sauvons-les-animaux.com/images/l/log/logo-22-ligne-blancheff.png");" 13 }}} 29 14 30 In user's case those entities were later changed into quotation marks what destroyed HTML when it was loaded to CKEditor form DB at later time. Result: 15 what later was changed by CKEditor to 31 16 {{{ 32 17 <table border="0" cellpadding="0" cellspacing="0" height="145" images="" … … 34 19 http://www.sauvons-les-animaux.com=""> 35 20 }}} 21 22 **Despite of what is changing " to ", this wouldn't happen if extra " weren’t added**