Code: Select all
Error: 'NoScript aborted redirection to http://a.collective-media.net/ad/ns.neowin.net/homepage;ppos=btf;kw=;tile=2;sz=300x250,336x280,300x600;ord=123456789' when calling method: [nsIChannelEventSink::onChannelRedirect] = NS_ERROR_XPC_JS_THREW_STRING
It's coming from http://www.neowin.net/
Fx3.6.3, NS 1.9.9.87, new profile, allow neowin.net, forbid "web bugs"
- Neowin has an ad iframe
with the following content:
Code: Select all
<iframe src="http://www.neowin.net/ads/leaderboard/atf?ajax=true" style="border:none;height:90px;width:728px;display:block" scrolling="no" frameborder="0"></iframe>
Code: Select all
<!DOCTYPE html> <html> <head> <style type="text/css"> body { padding: 0; margin: 0; } </style> </head> <body> <script type="text/javascript"> //<![CDATA[ ord = window.ord || Math.floor(Math.random()*1E16); document.write('<script type="text/javascript" src="http://ad4.netshelter.net/adj/ns.neowin.net/homepage;ppos=atf;kw=;tile=1;dcopt=ist;sz=728x90;ord=' + ord + '?"><\/script>'); //]]> </script> <noscript><a href="http://ad4.netshelter.net/jump/ns.neowin.net/homepage;ppos=atf;kw=;tile=1;sz=728x90;ord=123456789?" target="_blank" ><img src="http://ad4.netshelter.net/ad/ns.neowin.net/homepage;ppos=atf;kw=;tile=1;sz=728x90;ord=123456789?" border="0" alt="" /></a></noscript> </body> </html>
- The first question is what should happen to <noscript> if inline script is allowed but included (ad4.netshelter.net), not. Currently if the page is root, such <noscript> is not active, but if it's an iframe, it is active. Why this inconsistency?
- In this case it's an iframe, so <noscript> is activated and the web bug image loads
- but it's not blocked by NS (forbid web bugs), why?
- instead its 301 redirection is blocked producing the error at the top