Opened 14 years ago
Closed 12 years ago
#4152 closed bug (worksforme)
jQuery causes flicker with embedded QuickTime movies in Safari
Reported by: | synotic | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3.2 |
Component: | core | Version: | 1.3.1 |
Keywords: | quicktime flicker | Cc: | |
Blocked by: | Blocking: |
Description
If I try and inject the code necessary to embed a QuickTime movie (either using innerHTML or .html()), jQuery somehow interferes and flickers a copy of the video in the top left corner of the page on Safari. Simply removing jQuery fixes the bug. If I just include the embed code in the HTML, the bug doesn't occur. Here is a test case:
<html> <head> <script src="jquery-1.3.1.js" type="text/javascript"></script> <script type="text/javascript"> window.onload = function() { var code = '<embed width="320" height="152" src="http://movies.apple.com/movies/independent/phoebeinwonderland/phoebeinwonderland-clip_h.320.mov" type="video/quicktime" />'; document.body.innerHTML = code; }; </script> <style type="text/css"> body { margin: 3em; } </style> </head> <body></body> </html>
I've just added the padding so that you can see the flicker a little better.
Change History (2)
comment:1 Changed 13 years ago by
Component: | unfilled → core |
---|
comment:2 Changed 12 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Testing with jQuery 1.4.4 and the latest Safari build I don't see a flicker when testing this. Please see here for your test case Live Test Case. As this cannot be reproduced I am closing as worksforme.