Is Firefox 1.0.1 within its rights to crash when presented with the
following script?
<html>
<head>
<script>
var foo="foo";
window.onerror= function( msg, url, line ) {
switch( msg ) {
default: break;
case foo: break;
}
}
</script></head></html>
I'm betting not; I'm planning to file a bug report.
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cybers pace.org | don't, I need to know. Flames welcome.
following script?
<html>
<head>
<script>
var foo="foo";
window.onerror= function( msg, url, line ) {
switch( msg ) {
default: break;
case foo: break;
}
}
</script></head></html>
I'm betting not; I'm planning to file a bug report.
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cybers pace.org | don't, I need to know. Flames welcome.
Comment