Can someone confirm that firefox (3.6) automatically runs a javascript function called "onload" without an explicit call? Chrome and IE do not automatically run the declared function if they are not called, but firefox will apparently run the declared "onload" function even if it is not called (all in lower case).
Below is the jsfiddle link.
In the body tag, if you assigned a function called 'test' for the onload event, then firefox will call the test function. If you remove the onload call, firefox will automatically call the onload function.
Is this a famous property of firefox?
Jamex source share