باگ موجود در فاير فاكس : hanging firfox
ust put this code in a page and press the Ok button 3 times very fast. On my machine firefox just hangs and does nothing.
کد:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Crash FireFox</title>
</head>
<body>
<script language="javascript" type="text/javascript"><!--
document.onfocus = function() {
alert('click me fast...');
}
//--></script>
</body>
</html>
It has something to do with the onfocus because this way it doesn't work:
کد:
function test() {
alert('click me fast...');
test();
}
test();