Search and Top Navigation
#7468 closed bug (notabug)
Opened June 12, 2011 05:16PM UTC
Closed July 28, 2011 08:01AM UTC
Wrappers used by UI effects are created in an invalid context
Reported by: | mstekel | Owned by: | mstekel |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.effects.core | Version: | 1.8.13 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Function name: createWrapper
Line: 4353 (not minimized)
Current code: wrapper = $('<div></div>')
Correct code: wrapper = $('<div></div>', element[0].ownerDocument)
Reason: You cannot wrap elements living in one "ownerDocument" by elements created in another ownerDocument. Doing it on IE9 throws the WRONG_DOCUMENT_ERR and Microsoft guys are right this time.
Attachments (0)
Change History (4)
Changed July 04, 2011 02:15AM UTC by comment:1
Changed July 07, 2011 12:51PM UTC by comment:2
component: | ui.core → effects.core |
---|
Changed July 14, 2011 03:15AM UTC by comment:3
owner: | → mstekel |
---|---|
status: | new → pending |
I assume there is some sort of IFRAME trickery going on here? Can you reproduce this on jsfiddle and send us a link?
Changed July 28, 2011 08:01AM UTC by comment:4
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
@mstekel,
Can not reproduce with 1.8.14, can you test in the version and if able to reproduce can you provide some test code?