Opened 15 years ago
Last modified 15 years ago
#4859 closed Bug
Flash object elements are broken in FF — at Version 2
Reported by: | Wiktor Walc | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.1 |
Component: | General | Version: | 3.0 |
Keywords: | Confirmed Review+ | Cc: |
Description (last modified by )
Confirmed on FF 3.5.5 @ WinXP/SP3.
Steps to reproduce
- start with
<p><object width="660" height="525"> <param name="movie" value="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1"></param> <param name="allowFullScreen" value="true"></param> <param name="allowscriptaccess" value="always"></param> <embed src="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="660" height="525"></embed> </object></p>
- switch to source mode
- result:
<p><object height="525" width="660"> <param name="movie" value="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1" /> </object> <param name="allowFullScreen" value="true" /> <param name="allowscriptaccess" value="always" /> <embed allowfullscreen="true" allowscriptaccess="always" height="525" src="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1" type="application/x-shockwave-flash" width="660"> </embed></p>
(<embed>
and some<param>
elements are outside<object>
element)
Change History (3)
comment:1 Changed 15 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 15 years ago by
Description: | modified (diff) |
---|---|
Milestone: | CKEditor 3.1 → CKEditor 3.3 |
Defer it, at least it works for valid HTML.
Changed 15 years ago by
Attachment: | 4859.patch added |
---|
This does not happen when params are created this way:
it only happens when params are created like this:
(YouTube does like that).