yahoo news video doesn't play on placeholder activation

Bug reports and enhancement requests
User avatar
Giorgio Maone
Site Admin
Posts: 9454
Joined: Wed Mar 18, 2009 11:22 pm
Location: Palermo - Italy
Contact:

Re: yahoo news video doesn't play on placeholder activation

Post by Giorgio Maone »

al_9x wrote:Ok in 4.0.1, but not working in 3.6.17, should it?
No it shouldn't, because the way the script proxying the calls is executed in the content context, in a synchronous sandbox but having access to both references provided by the calling chrome code (the original embed) and to the unwrapped content, is available on Gecko 2 and above only.
Mozilla/5.0 (Windows NT 5.2; WOW64; rv:2.0.1) Gecko/20100101 Firefox/4.0.1
al_9x
Master Bug Buster
Posts: 931
Joined: Thu Mar 19, 2009 4:52 pm

Re: yahoo news video doesn't play on placeholder activation

Post by al_9x »

this stopped working at some point, the problem is the proxy function returns undefined, which must have been acceptable when this was first tested

Code: Select all

"env.a.__noSuchMethod__ = env.o.__noSuchMethod__ = function(m, a) { env.n[m].apply(env.n, a) }"
I verified that the following resolves the problem.

Code: Select all

"env.a.__noSuchMethod__ = env.o.__noSuchMethod__ = function(m, a) { return env.n[m].apply(env.n, a) }"
Mozilla/5.0 (Windows NT 5.1; rv:8.0) Gecko/20100101 Firefox/8.0
User avatar
Giorgio Maone
Site Admin
Posts: 9454
Joined: Wed Mar 18, 2009 11:22 pm
Location: Palermo - Italy
Contact:

Re: yahoo news video doesn't play on placeholder activation

Post by Giorgio Maone »

Done in latest development build 2.1.5rc4
Mozilla/5.0 (Windows NT 5.2; WOW64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1
al_9x
Master Bug Buster
Posts: 931
Joined: Thu Mar 19, 2009 4:52 pm

Re: yahoo news video doesn't play on placeholder activation

Post by al_9x »

Giorgio Maone wrote:Done in latest development build 2.1.5rc4
verified
Mozilla/5.0 (Windows NT 5.1; rv:8.0) Gecko/20100101 Firefox/8.0
Post Reply