Some browsers have protection against infinitely looping iframes. Some don't.
An infinitely looping iframe is a regular html document with an iframe tag that has the src attribute set to itself, for example:
If the source of "
http://example.com" was:
<html><body><iframe src="
http://example.com" /></body></html>
Then it would be in infinite loop.
You posted:
[i frame=750px,500px]
http://forum.3ice.hu/viewtopic.php?f=33&t=132[/i frame]
on the page:
http://forum.3ice.hu/viewtopic.php?f=33&t=132Notice how the links are the same? This puts the browser in a loop that never stops. The page keeps calling itself forever unless the browser prevents it.
Edit: This makes an infinite loop on ANY page:
- Code: Select all
<script type="text/javascript">document.write("<iframe src=\""+location.href+"\" />")</script>