[IE]core:htmlparser incorrectly convert image attr 'src' to 'url'
This bug cause image invisible when switching between two modes,witness on IE7.
- Open an editor instance and insert any visible image
- Switch to 'sourcearea' mode
- Switch back to 'wysiwyg' mode
- Expected: nothing changed
- Actual: image invisible, because of attribute 'src' was converted to 'url'
Change History (8)
| Component: |
General →
Core : Output Data
|
| Owner: |
set to Martin Kou
|
| Status: |
new →
assigned
|
| Keywords: |
Confirmed added
|
| Keywords: |
Review+ added; Review? removed
|
| Resolution: |
→ fixed
|
| Status: |
assigned →
closed
|
The fault comes from the image dialog instead of from the HTML output system. The dialog's .js file used _cke_saved_url to save the image's src attribute, the URL protection logic in WYSIWYG area plugin then correctly truncates that to "url". The .js file should use _cke_saved_src instead.