Side navigation
Ticket #5312: IE bug.html
File IE bug.html, 0.3 KB (added by chrisprice, September 30, 2009 04:29PM UTC)
The non-jquery test cases
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<script>
function a(fn) {
alert(fn);
alert(fn());
alert((fn === fn) + (fn() === fn()) + (fn === fn()));
}
a(function b() { return b; });
var f = function g() {
alert(f === g);
alert(f == g);
};
f();
</script>
</head>
</html>
Download in other formats:
Original Format
File IE bug.html, 0.3 KB (added by chrisprice, September 30, 2009 04:29PM UTC)
The non-jquery test cases
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<script>
function a(fn) {
alert(fn);
alert(fn());
alert((fn === fn) + (fn() === fn()) + (fn === fn()));
}
a(function b() { return b; });
var f = function g() {
alert(f === g);
alert(f == g);
};
f();
</script>
</head>
</html>