This post originated from an RSS feed registered with Python Buzz
by Bob Ippolito.
Original Post: Firefox, get with it.
Feed Title: Bob's Rants
Feed URL: http://www.pycs.net/bob/weblog/rss.xml
Feed Description: from __future__ import *
The JavaScript engine in Firefox has some really asinine warnings, here's the one that annoys me most:
deprecated with statement usage:
with ({stuff: "here"}) { eval("alert(stuff)"); }
Ok, now this is just lame. with is clearly in the ECMA standard and all JavaScript implementations, is definitely useful, and it can't go away while still maintaining backwards compatibility. [...]