Page 1 of 1
since .55 youtube channel subscription navs are blocked
Posted: Mon Mar 15, 2010 10:15 am
by al_9x
by x-frame-options code
Re: since .55 youtube channel subscription navs are blocked
Posted: Mon Mar 15, 2010 10:41 am
by Giorgio Maone
How can I check it?
Re: since .55 youtube channel subscription navs are blocked
Posted: Mon Mar 15, 2010 10:48 am
by al_9x
Giorgio Maone wrote:How can I check it?
go to any channel page (e.g.
http://www.youtube.com/user/google)
click "subscribe to this page" navbar button
you get the following in the console:
X-FRAME-OPTIONS: blocked
http://gdata.youtube.com/feeds/base/use ... be-profile
Re: since .55 youtube channel subscription navs are blocked
Posted: Mon Mar 15, 2010 1:16 pm
by Giorgio Maone
Should be fixed in
latest development build, thanks.
Re: since .55 youtube channel subscription navs are blocked
Posted: Mon Mar 15, 2010 1:52 pm
by al_9x
fixed
is ABE.checkFrameOpt(domWindow, req) in front of this.getPref("frameOptions.enabled") on purpose?
Re: since .55 youtube channel subscription navs are blocked
Posted: Mon Mar 15, 2010 5:21 pm
by Giorgio Maone
al_9x wrote:is ABE.checkFrameOpt(domWindow, req) in front of this.getPref("frameOptions.enabled") on purpose?
Yes, since checkFrameOpt() is quite cheap and has no side effects, and frameOptions.enabled is true by default, we're skipping an useless getPref() call in the overwhelming commonest case.