a couple of noscript meta refresh problems
Posted: Sat Dec 26, 2009 5:03 am
fx 3.5.6 & 2, new profile, forbid meta refresh inside noscript
- refresh to self with no url parameter not blocked
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> </head> <body> body<br> <noscript> noscript<br> <meta http-equiv="refresh" content="3"> </noscript> </body> </html>
- refresh inside iframe not blocked, create a local page with an iframe pointing to a local page with the following content:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> </head> <body> body<br> <noscript> noscript<br> <meta http-equiv="refresh" content="3;url=http://www.mozilla.org/"> </noscript> </body> </html>